]> git.saurik.com Git - apt.git/commitdiff
add AI_ADDRCONFIG to ai_flags in connect.cc as suggested by Aurelien Jarno
authorDavid Kalnischkies <kalnischkies@gmail.com>
Thu, 10 Dec 2009 23:42:43 +0000 (00:42 +0100)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Thu, 10 Dec 2009 23:42:43 +0000 (00:42 +0100)
in his response to Bernhard R. Link's patch, thanks! (Closes: #505020)

debian/changelog
methods/connect.cc

index e930de0dd538bb073d4ce6416c064dbbaf483420..b8e43533047547cdc6a10928a012a19b5da094e7 100644 (file)
@@ -69,6 +69,8 @@ apt (0.7.25) UNRELEASED; urgency=low
     - add --debian-only as alias for --diff-only
   * methods/connect.cc:
     - display also strerror of "wicked" getaddrinfo errors
+    - add AI_ADDRCONFIG to ai_flags as suggested by Aurelien Jarno
+      in response to Bernhard R. Link, thanks! (Closes: #505020)
   * buildlib/configure.mak, buildlib/config.{sub,guess}:
     - remove (outdated) config.{sub,guess} and use the ones provided
       by the new added build-dependency autotools-dev instead
index 74e670ebd417cf0467aed6a45ef596653ecc1659..adb16a19973c9341dfc9b38f0a311f913cac63a2 100644 (file)
@@ -158,6 +158,7 @@ bool Connect(string Host,int Port,const char *Service,int DefPort,int &Fd,
       struct addrinfo Hints;
       memset(&Hints,0,sizeof(Hints));
       Hints.ai_socktype = SOCK_STREAM;
+      Hints.ai_flags = AI_ADDRCONFIG;
       Hints.ai_protocol = 0;
       
       // if we couldn't resolve the host before, we don't try now