Rick Richardson's getaddrinfo() usage fix to speed up name resolves
diff --git a/lib/hostip.c b/lib/hostip.c
index 0118ebd..711d155 100644
--- a/lib/hostip.c
+++ b/lib/hostip.c
@@ -292,7 +292,7 @@
   char sbuf[NI_MAXSERV];
 
   memset(&hints, 0, sizeof(hints));
-  hints.ai_family = PF_UNSPEC;
+  hints.ai_family = PF_INET;
   hints.ai_socktype = SOCK_STREAM;
   hints.ai_flags = AI_CANONNAME;
   snprintf(sbuf, sizeof(sbuf), "%d", port);