From: Richard Levitte Date: Thu, 4 Feb 2016 23:00:22 +0000 (+0100) Subject: Initialise with -1 rather than 1 X-Git-Tag: OpenSSL_1_1_0-pre3~268 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=c4cbf9b3440adcd3fd2454dccb163552ed7db73a Initialise with -1 rather than 1 A small typo crept in. Reviewed-by: Kurt Roeckx --- diff --git a/test/testlib/OpenSSL/Test/Utils.pm b/test/testlib/OpenSSL/Test/Utils.pm index 2b2cfcd0a8..4273292f5a 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;