diff options
author | Bodo Möller <bodo@openssl.org> | 2005-04-26 20:08:00 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2005-04-26 20:08:00 +0200 |
commit | beb056b303bd5733a05a85eb8527d40901e79e1a (patch) | |
tree | 86d419145b0f0ce0109d5f5e8d0cb6a6efcd9056 /util/ck_errf.pl | |
parent | Fixes for signed/unsigned warnings and shadows. (diff) | |
download | openssl-beb056b303bd5733a05a85eb8527d40901e79e1a.tar.xz openssl-beb056b303bd5733a05a85eb8527d40901e79e1a.zip |
fix SSLerr stuff for DTLS1 code;
move some functions from exported header <openssl/dtl1.h> into "ssl_locl.h";
fix silly indentation (a TAB is *not* always 4 spaces)
Diffstat (limited to 'util/ck_errf.pl')
-rwxr-xr-x | util/ck_errf.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/ck_errf.pl b/util/ck_errf.pl index 7a24d6c5a2..2b571e2412 100755 --- a/util/ck_errf.pl +++ b/util/ck_errf.pl @@ -13,9 +13,9 @@ 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=$1; + $func=$2; $func =~ tr/A-Z/a-z/; } if (/([A-Z0-9]+)err\(([^,]+)/) |