Initialise with -1 rather than 1
A small typo crept in. Reviewed-by: Kurt Roeckx <kurt@openssl.org>
This commit is contained in:
parent
43e5faa253
commit
c4cbf9b344
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue