(socket_connection): Remove AI_ADDRCONFIG.
authorJan Djärv <jan.h.d@swipnet.se>
Tue, 27 Nov 2007 07:38:21 +0000 (07:38 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Tue, 27 Nov 2007 07:38:21 +0000 (07:38 +0000)
lib-src/ChangeLog
lib-src/pop.c

index a4d67b8..1c8727c 100644 (file)
@@ -1,3 +1,7 @@
+2007-11-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
+
+       * pop.c (socket_connection): Remove AI_ADDRCONFIG.
+
 2007-11-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
        * pop.c (socket_connection): Move realhost out of #ifdefs.
index ea05771..5e6623a 100644 (file)
@@ -1107,7 +1107,7 @@ socket_connection (host, flags)
 #ifdef HAVE_GETADDRINFO
   memset (&hints, 0, sizeof(hints));
   hints.ai_socktype = SOCK_STREAM;
-  hints.ai_flags = AI_ADDRCONFIG | AI_CANONNAME;
+  hints.ai_flags = AI_CANONNAME;
   hints.ai_family = AF_INET;
   do
     {