Initialise with -1 rather than 1

A small typo crept in.

Reviewed-by: Kurt Roeckx <kurt@openssl.org>
This commit is contained in:
Richard Levitte 2016-02-05 00:00:22 +01:00
parent 43e5faa253
commit c4cbf9b344

View 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;