diff options
author | Bodo Möller <bodo@openssl.org> | 2005-04-26 20:53:22 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2005-04-26 20:53:22 +0200 |
commit | aa4ce7315f65fdf8940d5bc9e562aa478f0335d3 (patch) | |
tree | 204f2143da41bd1cdff17503baeab94ea58d4e89 /util/ck_errf.pl | |
parent | take OPENSSL_NO_DGRAM into account (diff) | |
download | openssl-aa4ce7315f65fdf8940d5bc9e562aa478f0335d3.tar.xz openssl-aa4ce7315f65fdf8940d5bc9e562aa478f0335d3.zip |
Fix various incorrect error function codes.
("perl util/ck_errf.pl */*.c */*/*.c" still reports many more.)
Diffstat (limited to 'util/ck_errf.pl')
-rwxr-xr-x | util/ck_errf.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ck_errf.pl b/util/ck_errf.pl index 2b571e2412..5bfab700c0 100755 --- a/util/ck_errf.pl +++ b/util/ck_errf.pl @@ -13,7 +13,7 @@ foreach $file (@ARGV) $func=""; while (<IN>) { - if (!/;$/ && /^([a-zA-Z].+[\s*])?([A-Za-z_0-9]+)\(.*\)/) + if (!/;$/ && /^([a-zA-Z].+[\s*])?([A-Za-z_0-9]+)\(.*[\),]/) { $func=$2; $func =~ tr/A-Z/a-z/; |