]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Initialise with -1 rather than 1
authorRichard Levitte <levitte@openssl.org>
Thu, 4 Feb 2016 23:00:22 +0000 (00:00 +0100)
committerRichard Levitte <levitte@openssl.org>
Thu, 4 Feb 2016 23:03:53 +0000 (00:03 +0100)
A small typo crept in.

Reviewed-by: Kurt Roeckx <kurt@openssl.org>
test/testlib/OpenSSL/Test/Utils.pm

index 2b2cfcd0a8d943d483aa619cb7f536ee6adb6a2e..4273292f5a6834435156a50ad85b79798f3c8a14 100644 (file)
@@ -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;