1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

(socket_connection): Remove AI_ADDRCONFIG.

This commit is contained in:
Jan Djärv 2007-11-27 07:38:21 +00:00
parent 73e72da43b
commit 7291159e25
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-11-27 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* pop.c (socket_connection): Remove AI_ADDRCONFIG.
2007-11-19 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* pop.c (socket_connection): Move realhost out of #ifdefs.

View 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
{