diff options
author | Werner Koch <[email protected]> | 2007-10-01 14:48:39 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2007-10-01 14:48:39 +0000 |
commit | 31c19d1d685b75377d9ff6dfbc9138ecbd5600b4 (patch) | |
tree | f6630bee0deef3ff050b3ca7dbb55e4951e34372 /scd/scdaemon.h | |
parent | Support the SETQUALITYBAR command of recent pinentries. (diff) | |
download | gnupg-31c19d1d685b75377d9ff6dfbc9138ecbd5600b4.tar.gz gnupg-31c19d1d685b75377d9ff6dfbc9138ecbd5600b4.zip |
Use Assuan socket wrapper calls.
Made socket servers secure under Windows.
Diffstat (limited to '')
-rw-r--r-- | scd/scdaemon.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scd/scdaemon.h b/scd/scdaemon.h index 762ba7457..df4f89034 100644 --- a/scd/scdaemon.h +++ b/scd/scdaemon.h @@ -30,7 +30,7 @@ #include <gcrypt.h> #include "../common/util.h" #include "../common/errors.h" - +#include "../common/sysutils.h" /* To convey some special hash algorithms we use algorithm numbers reserved for application use. */ @@ -91,7 +91,7 @@ struct server_control_s /* Private data used to fire up the connection thread. We use this structure do avoid an extra allocation for just a few bytes. */ struct { - int fd; + gnupg_fd_t fd; } thread_startup; /* Local data of the server; used only in command.c. */ |