diff options
author | Pauli <pauli@openssl.org> | 2021-05-25 04:04:22 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-05-26 05:01:47 +0200 |
commit | b93f6c2db94f736b497ff31a793c1e6766eaf209 (patch) | |
tree | 769caa7724a0e67758b80f01350701365f396a56 /crypto/sm2 | |
parent | Fix building of test/pbetest.c (diff) | |
download | openssl-b93f6c2db94f736b497ff31a793c1e6766eaf209.tar.xz openssl-b93f6c2db94f736b497ff31a793c1e6766eaf209.zip |
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 'crypto/sm2')
-rw-r--r-- | crypto/sm2/sm2_err.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/sm2/sm2_err.c b/crypto/sm2/sm2_err.c index f548aba539..d420d4e597 100644 --- a/crypto/sm2/sm2_err.c +++ b/crypto/sm2/sm2_err.c @@ -37,7 +37,7 @@ static const ERR_STRING_DATA SM2_str_reasons[] = { # endif -int err_load_SM2_strings_int(void) +int ossl_err_load_SM2_strings(void) { # ifndef OPENSSL_NO_ERR if (ERR_reason_error_string(SM2_str_reasons[0].error) == NULL) |