The branch master has been updated
via 584410227ab3afd3d296408ca096409cd677ee10 (commit)
from a6a66e4511eec0f4ecc2943117a42b3723eb2222 (commit)
- Log -----------------------------------------------------------------
commit 584410227ab3afd3d296408ca096409cd677ee10
Author: Rich Salz <[email protected]>
Date: Thu Jul 18 15:40:12 2019 -0400
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 <[email protected]>
Reviewed-by: Richard Levitte <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/9413)
-----------------------------------------------------------------------
Summary of changes:
util/mkerr.pl | 4 ----
1 file changed, 4 deletions(-)
diff --git a/util/mkerr.pl b/util/mkerr.pl
index aae49ac..956b661 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;
}