Always call res_init() before getaddrinfo().
[oweals/tinc.git] / src / netutl.c
index c57b24ff1e2dd86a554b24e63187b3885ca0a164..fc3cdc9166cbeedb572b55e3f96907c8d7dd910e 100644 (file)
@@ -39,6 +39,10 @@ struct addrinfo *str2addrinfo(const char *address, const char *service, int sock
        hint.ai_family = addressfamily;
        hint.ai_socktype = socktype;
 
+#ifdef HAVE_DECL_RES_INIT
+       // ensure glibc reloads /etc/resolv.conf.
+       res_init();
+#endif
        err = getaddrinfo(address, service, &hint, &ai);
 
        if(err) {