From: Geoff Thorpe Date: Fri, 25 Apr 2014 05:20:16 +0000 (-0400) Subject: util/mkerr.pl: fix perl warning X-Git-Tag: OpenSSL_1_0_2-beta2~241 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c434f7f80fdbb7c7359eb957549c3ba07255bf26;p=openssl util/mkerr.pl: fix perl warning Gets rid of this; defined(@array) is deprecated at ../util/mkerr.pl line 792. (Maybe you should just omit the defined()?) defined(@array) is deprecated at ../util/mkerr.pl line 800. (Maybe you should just omit the defined()?) Signed-off-by: Geoff Thorpe (cherry picked from commit 647f360e2e86818cee1f2d0429e071d14814e0b5) --- diff --git a/util/mkerr.pl b/util/mkerr.pl index 1f19cb921a..5033abad97 100644 --- a/util/mkerr.pl +++ b/util/mkerr.pl @@ -788,7 +788,7 @@ foreach (keys %rcodes) { push (@runref, $_) unless exists $urcodes{$_}; } -if($debug && defined(@funref) ) { +if($debug && @funref) { print STDERR "The following function codes were not referenced:\n"; foreach(sort @funref) { @@ -796,7 +796,7 @@ if($debug && defined(@funref) ) { } } -if($debug && defined(@runref) ) { +if($debug && @runref) { print STDERR "The following reason codes were not referenced:\n"; foreach(sort @runref) {