diff options
author | NIIBE Yutaka <[email protected]> | 2017-04-12 02:44:10 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2017-04-12 02:44:10 +0000 |
commit | 60d9a9e6b4ae3af029596d14732c02f49203326d (patch) | |
tree | 896d7a8142730e5931d9d01d99e011391d11f80d | |
parent | scd: Handle unexpected suspend/resume by CCID driver. (diff) | |
download | gnupg-60d9a9e6b4ae3af029596d14732c02f49203326d.tar.gz gnupg-60d9a9e6b4ae3af029596d14732c02f49203326d.zip |
dirmngr: Fix plus1_ns.
* dirmngr/dns.c (plus1_ns): Fix the initial implementation.
--
Fixes-commit: 64904ce627b6b0661acf15b5b70103c4842bb0f3
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | dirmngr/dns.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dirmngr/dns.c b/dirmngr/dns.c index ae3c3b085..39d3295b0 100644 --- a/dirmngr/dns.c +++ b/dirmngr/dns.c @@ -54,6 +54,9 @@ #endif #include <winsock2.h> #include <ws2tcpip.h> +#ifdef TIME_WITH_SYS_TIME +#include <sys/time.h> /* gettimeofday(2) */ +#endif #else #include <sys/time.h> /* gettimeofday(2) */ #include <sys/types.h> /* FD_SETSIZE socklen_t */ @@ -1971,7 +1974,7 @@ void dns_p_dictadd(struct dns_packet *P, unsigned short dn) { static inline uint16_t plus1_ns (uint16_t count_net) { - uint16_t count = ntohs (count); + uint16_t count = ntohs (count_net); count++; return htons (count); |