summaryrefslogtreecommitdiffstats
path: root/www/crawl/files/patch-dns.c
blob: 02215d8c182e27fe708502ba27d4e9f28fcc2ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- dns.c.orig	Sun May 18 10:21:33 2003
+++ dns.c	Mon May 30 16:20:14 2005
@@ -562,8 +562,13 @@
         if (res != 0) {
                 fprintf(stderr, "%s: getaddrinfo(%s): %s\n", __func__,
 		    ip, gai_strerror(res));
+#ifdef EAI_NODATA
 		if (res != EAI_NODATA)
 			return (-1);
+#else
+		if (res != EAI_NONAME)
+			return (-1);
+#endif
 
 		/* Negative caching */
 		ai = NULL;
OpenPOWER on IntegriCloud