[openssl-commits] [openssl] master update

Ben Laurie ben at openssl.org
Wed Jun 29 11:39:35 UTC 2016


The branch master has been updated
       via  cbddeebe49ae024e8debc9ae4f90f22ee15a69e2 (commit)
      from  03cb37acec0c23a01bee4357cd59ec9f97e528ba (commit)


- Log -----------------------------------------------------------------
commit cbddeebe49ae024e8debc9ae4f90f22ee15a69e2
Author: Ben Laurie <ben at links.org>
Date:   Sat Jun 25 17:42:14 2016 +0100

    Some interfaces may have IPv6 addresses even if an IPv6 address is not
    "configured on the local system". Whatever that means. Example that is biting
    me is loopback has ::1 as an address, but the network interface is v4 only.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 crypto/bio/b_addr.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/crypto/bio/b_addr.c b/crypto/bio/b_addr.c
index e5352db..b77fd4b 100644
--- a/crypto/bio/b_addr.c
+++ b/crypto/bio/b_addr.c
@@ -666,9 +666,6 @@ int BIO_lookup(const char *host, const char *service,
         struct addrinfo hints;
         memset(&hints, 0, sizeof hints);
 
-# ifdef AI_ADDRCONFIG
-        hints.ai_flags = AI_ADDRCONFIG;
-# endif
         hints.ai_family = family;
         hints.ai_socktype = socktype;
 


More information about the openssl-commits mailing list