[openssl-commits] [openssl] OpenSSL_1_1_1-stable update

Richard Levitte levitte at openssl.org
Mon Feb 4 20:52:30 UTC 2019


The branch OpenSSL_1_1_1-stable has been updated
       via  5dc422c7abbd243a5a665f81d7f1e589b646967d (commit)
      from  453eccd63ad6ba19f6a3fcac37df05daf6cc1021 (commit)


- Log -----------------------------------------------------------------
commit 5dc422c7abbd243a5a665f81d7f1e589b646967d
Author: Matthias Kraft <Matthias.Kraft at softwareag.com>
Date:   Mon Feb 4 09:55:07 2019 +0100

    Fix Invalid Argument return code from IP_Factory in connect_to_server().
    
    Fixes #7732
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/8158)
    
    (cherry picked from commit 66a60003719240399f6596e58c239df0465a4f70)

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

Summary of changes:
 util/perl/TLSProxy/Proxy.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/perl/TLSProxy/Proxy.pm b/util/perl/TLSProxy/Proxy.pm
index 8c13520..89c8c1d 100644
--- a/util/perl/TLSProxy/Proxy.pm
+++ b/util/perl/TLSProxy/Proxy.pm
@@ -44,7 +44,7 @@ BEGIN
         $s->close();
     };
     if ($@ eq "") {
-        $IP_factory = sub { IO::Socket::INET6->new(@_); };
+        $IP_factory = sub { IO::Socket::INET6->new(Domain => AF_INET6, @_); };
         $have_IPv6 = 1;
     } else {
         eval {


More information about the openssl-commits mailing list