]> git.eshelyaron.com Git - emacs.git/commitdiff
(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 a4d67b80eed3fe13e80b93f231882becc1f63b9b..1c8727c01ec95ce4cd8be16fec3d554cc0bb1c7e 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 ea0577132346d2f8c48e1a02286184d78d933423..5e6623aaf8d0473bc0a3f1f6dde8b31406e4b506 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
     {