summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2019-07-18 15:40:12 -0400
committerTomas Mraz <tmraz@fedoraproject.org>2019-07-23 10:22:17 +0200
commit584410227ab3afd3d296408ca096409cd677ee10 (patch)
tree5e202f5cc723027acc5df943828d7487ecdbcf78 /util
parenta6a66e4511eec0f4ecc2943117a42b3723eb2222 (diff)
Don't complain if function name doesn't match
The "function" argument is now unused in the XXXerr defines, so mkerr doesn't need to check if the value/name match. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9413)
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkerr.pl4
1 files changed, 0 insertions, 4 deletions
diff --git a/util/mkerr.pl b/util/mkerr.pl
index aae49ac237..956b66179a 100755
--- a/util/mkerr.pl
+++ b/util/mkerr.pl
@@ -394,10 +394,6 @@ foreach my $file ( @source ) {
$fnew{$2}++;
}
$ftrans{$3} = $func unless exists $ftrans{$3};
- if ( uc($func) ne $3 ) {
- print STDERR "ERROR: mismatch $file:$linenr $func:$3\n";
- $errors++;
- }
print STDERR " Function $1 = $fcodes{$1}\n"
if $debug;
}