summaryrefslogtreecommitdiff
path: root/lib-src/pop.c
diff options
context:
space:
mode:
authorJan Djärv <jan.h.d@swipnet.se>2007-11-27 07:38:21 +0000
committerJan Djärv <jan.h.d@swipnet.se>2007-11-27 07:38:21 +0000
commit7291159e257595ede482684563d5146b13f00384 (patch)
treeb71033a50e17d522c836bfb2eb48c140045a1216 /lib-src/pop.c
parent73e72da43b94e48189a4ff9fe711d36c6593d8e1 (diff)
downloademacs-7291159e257595ede482684563d5146b13f00384.tar.gz
(socket_connection): Remove AI_ADDRCONFIG.
Diffstat (limited to 'lib-src/pop.c')
-rw-r--r--lib-src/pop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c
index ea057713234..5e6623aaf8d 100644
--- a/lib-src/pop.c
+++ b/lib-src/pop.c
@@ -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
{