From: Danny Mayer Date: Tue, 18 Jan 2005 05:48:54 +0000 (-0500) Subject: Fix missing parenthesis and remove duplicate CONFIG_CDELAY X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6dfcb18ac35c7f7888e2e10fcbed387f78d9a5d2;p=thirdparty%2Fntp.git Fix missing parenthesis and remove duplicate CONFIG_CDELAY bk: 41eca346d_eor_rC405A7ZwQPC1N_w --- diff --git a/include/ntp_config.h b/include/ntp_config.h index 69e6d46a66..c0d34f92a2 100644 --- a/include/ntp_config.h +++ b/include/ntp_config.h @@ -56,9 +56,8 @@ #define CONFIG_TTL 35 #define CONFIG_INCLUDEFILE 36 #define CONFIG_KEYSDIR 37 -#define CONFIG_CDELAY 38 #ifdef OPENSSL -#define CONFIG_CRYPTO 39 +#define CONFIG_CRYPTO 38 #endif /* OPENSSL */ /* diff --git a/ports/winnt/include/isc/ipv6.h b/ports/winnt/include/isc/ipv6.h index c8c76e6d98..828ca762e5 100644 --- a/ports/winnt/include/isc/ipv6.h +++ b/ports/winnt/include/isc/ipv6.h @@ -62,7 +62,7 @@ extern const struct in6_addr isc_in6addr_loopback; */ #ifndef IN6_IS_ADDR_UNSPECIFIED -#define IN6_IS_ADDR_UNSPECIFIED(a) \ +#define IN6_IS_ADDR_UNSPECIFIED(a) (\ *((u_long *)((a)->s6_addr) ) == 0 && \ *((u_long *)((a)->s6_addr) + 1) == 0 && \ *((u_long *)((a)->s6_addr) + 2) == 0 && \