From: Andrew Dunstan Date: Sun, 1 Aug 2021 17:03:15 +0000 (-0400) Subject: Silence perl warning about uninitialized value X-Git-Tag: REL_15_BETA1~1752 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d1401931868e03342ed4689b5af2522eb40f750;p=thirdparty%2Fpostgresql.git Silence perl warning about uninitialized value --- diff --git a/src/test/modules/ssl_passphrase_callback/t/001_testfunc.pl b/src/test/modules/ssl_passphrase_callback/t/001_testfunc.pl index 0a45fc1b75e..1f28f303f1a 100644 --- a/src/test/modules/ssl_passphrase_callback/t/001_testfunc.pl +++ b/src/test/modules/ssl_passphrase_callback/t/001_testfunc.pl @@ -10,7 +10,7 @@ use TestLib; use Test::More; use PostgresNode; -unless ($ENV{with_ssl} eq 'openssl') +unless (($ENV{with_ssl} || "") eq 'openssl') { plan skip_all => 'OpenSSL not supported by this build'; }