Don't try to call res_init() if ./configure told us it doesn't exist.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 5 Jul 2015 14:04:11 +0000 (16:04 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 5 Jul 2015 14:04:11 +0000 (16:04 +0200)
src/net_setup.c
src/netutl.c

index 5a6eb72..863616b 100644 (file)
@@ -813,7 +813,7 @@ static bool setup_myself(void) {
                        hint.ai_protocol = IPPROTO_TCP;
                        hint.ai_flags = AI_PASSIVE;
 
                        hint.ai_protocol = IPPROTO_TCP;
                        hint.ai_flags = AI_PASSIVE;
 
-#ifdef HAVE_DECL_RES_INIT
+#if HAVE_DECL_RES_INIT
                        // ensure glibc reloads /etc/resolv.conf.
                        res_init();
 #endif
                        // ensure glibc reloads /etc/resolv.conf.
                        res_init();
 #endif
index 8d4d26c..275c64f 100644 (file)
@@ -39,7 +39,7 @@ struct addrinfo *str2addrinfo(const char *address, const char *service, int sock
        hint.ai_family = addressfamily;
        hint.ai_socktype = socktype;
 
        hint.ai_family = addressfamily;
        hint.ai_socktype = socktype;
 
-#ifdef HAVE_DECL_RES_INIT
+#if HAVE_DECL_RES_INIT
        // ensure glibc reloads /etc/resolv.conf.
        res_init();
 #endif
        // ensure glibc reloads /etc/resolv.conf.
        res_init();
 #endif