[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Thu Feb 4 23:03:55 UTC 2016
The branch master has been updated
via c4cbf9b3440adcd3fd2454dccb163552ed7db73a (commit)
from 43e5faa2539ae8aae6ef55be2239b9b1a77fea45 (commit)
- Log -----------------------------------------------------------------
commit c4cbf9b3440adcd3fd2454dccb163552ed7db73a
Author: Richard Levitte <levitte at openssl.org>
Date: Fri Feb 5 00:00:22 2016 +0100
Initialise with -1 rather than 1
A small typo crept in.
Reviewed-by: Kurt Roeckx <kurt at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
test/testlib/OpenSSL/Test/Utils.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/testlib/OpenSSL/Test/Utils.pm b/test/testlib/OpenSSL/Test/Utils.pm
index 2b2cfcd..4273292 100644
--- a/test/testlib/OpenSSL/Test/Utils.pm
+++ b/test/testlib/OpenSSL/Test/Utils.pm
@@ -153,7 +153,7 @@ sub config {
# IPv4 / IPv6 checker
my $have_IPv4 = -1;
-my $have_IPv6 = 1;
+my $have_IPv6 = -1;
my $IP_factory;
sub check_IP {
my $listenaddress = shift;
More information about the openssl-commits
mailing list