The branch master has been updated
       via  66a60003719240399f6596e58c239df0465a4f70 (commit)
      from  adc7e221f12462c6e10bc7c2c7afaf52490cb292 (commit)


- Log -----------------------------------------------------------------
commit 66a60003719240399f6596e58c239df0465a4f70
Author: Matthias Kraft <[email protected]>
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 <[email protected]>
    Reviewed-by: Richard Levitte <[email protected]>
    (Merged from https://github.com/openssl/openssl/pull/8158)

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

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 3821385..a583e63 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 {
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to