diff options
| author | Jan Djärv | 2007-11-27 07:38:21 +0000 |
|---|---|---|
| committer | Jan Djärv | 2007-11-27 07:38:21 +0000 |
| commit | 7291159e257595ede482684563d5146b13f00384 (patch) | |
| tree | b71033a50e17d522c836bfb2eb48c140045a1216 /lib-src | |
| parent | 73e72da43b94e48189a4ff9fe711d36c6593d8e1 (diff) | |
| download | emacs-7291159e257595ede482684563d5146b13f00384.tar.gz emacs-7291159e257595ede482684563d5146b13f00384.zip | |
(socket_connection): Remove AI_ADDRCONFIG.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 4 | ||||
| -rw-r--r-- | lib-src/pop.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index a4d67b80eed..1c8727c01ec 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-11-27 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * pop.c (socket_connection): Remove AI_ADDRCONFIG. | ||
| 4 | |||
| 1 | 2007-11-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> | 5 | 2007-11-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se> |
| 2 | 6 | ||
| 3 | * pop.c (socket_connection): Move realhost out of #ifdefs. | 7 | * pop.c (socket_connection): Move realhost out of #ifdefs. |
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) | |||
| 1107 | #ifdef HAVE_GETADDRINFO | 1107 | #ifdef HAVE_GETADDRINFO |
| 1108 | memset (&hints, 0, sizeof(hints)); | 1108 | memset (&hints, 0, sizeof(hints)); |
| 1109 | hints.ai_socktype = SOCK_STREAM; | 1109 | hints.ai_socktype = SOCK_STREAM; |
| 1110 | hints.ai_flags = AI_ADDRCONFIG | AI_CANONNAME; | 1110 | hints.ai_flags = AI_CANONNAME; |
| 1111 | hints.ai_family = AF_INET; | 1111 | hints.ai_family = AF_INET; |
| 1112 | do | 1112 | do |
| 1113 | { | 1113 | { |