diff options
author | Timo Schulz <[email protected]> | 2004-10-04 17:25:29 +0000 |
---|---|---|
committer | Timo Schulz <[email protected]> | 2004-10-04 17:25:29 +0000 |
commit | eb02f5b46a68acf840b26fe2893d2c82e24b8acb (patch) | |
tree | a9a3357d558c3256241c0031c41e3b842a842ed2 /g10/apdu.c | |
parent | * keyedit.c (print_and_check_one_sig_colon): Fix bad keyids in colon (diff) | |
download | gnupg-eb02f5b46a68acf840b26fe2893d2c82e24b8acb.tar.gz gnupg-eb02f5b46a68acf840b26fe2893d2c82e24b8acb.zip |
2004-10-03 Timo Schulz <[email protected]>
* apdu.c (apdu_open_remote_reader) [_WIN32]: Do not set ENOSYS.
Diffstat (limited to '')
-rw-r--r-- | g10/apdu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/g10/apdu.c b/g10/apdu.c index fceb4f396..f2bc2f21d 100644 --- a/g10/apdu.c +++ b/g10/apdu.c @@ -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 } |