summaryrefslogtreecommitdiffstats
path: root/util/mkerr.pl
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2021-05-25 12:04:22 +1000
committerPauli <pauli@openssl.org>2021-05-26 13:01:47 +1000
commitb93f6c2db94f736b497ff31a793c1e6766eaf209 (patch)
tree769caa7724a0e67758b80f01350701365f396a56 /util/mkerr.pl
parent9080ed2175532df8ecee4a2de9979037133d2601 (diff)
err: rename err_load_xxx_strings_int functions
The new names are ossl_err_load_xxx_strings. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15446)
Diffstat (limited to 'util/mkerr.pl')
-rwxr-xr-xutil/mkerr.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/mkerr.pl b/util/mkerr.pl
index e297797b6a..ab25b8fc96 100755
--- a/util/mkerr.pl
+++ b/util/mkerr.pl
@@ -358,7 +358,7 @@ EOF
$indent = " ";
}
print OUT <<"EOF";
-int err_load_${lib}_strings_int(void);
+int ossl_err_load_${lib}_strings(void);
EOF
# If this library doesn't have a public header file, we write all
@@ -581,7 +581,7 @@ EOF
if ( $internal ) {
print OUT <<"EOF";
-int err_load_${lib}_strings_int(void)
+int ossl_err_load_${lib}_strings(void)
{
#${indent}ifndef OPENSSL_NO_ERR
if (ERR_reason_error_string(${lib}_str_reasons[0].error) == NULL)