1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-02-01 16:33:02 +01:00

2004-10-03 Timo Schulz <twoaday@g10code.de>

* apdu.c (apdu_open_remote_reader) [_WIN32]: Do not set ENOSYS.
This commit is contained in:
Timo Schulz 2004-10-04 17:25:29 +00:00
parent 56fbde0f5e
commit eb02f5b46a
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-10-03 Timo Schulz <twoaday@g10code.de>
* apdu.c (apdu_open_remote_reader) [_WIN32]: Do not set ENOSYS.
2004-10-03 David Shaw <dshaw@jabberwocky.com>
* keyedit.c (print_and_check_one_sig_colon): Fix bad keyids in

View File

@ -2047,7 +2047,9 @@ apdu_open_remote_reader (const char *portstr,
writefnc, writefnc_value,
closefnc, closefnc_value);
#else
#ifndef _WIN32
errno = ENOSYS;
#endif
return -1;
#endif
}