summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_init.c
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 /ssl/ssl_init.c
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 'ssl/ssl_init.c')
-rw-r--r--ssl/ssl_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssl/ssl_init.c b/ssl/ssl_init.c
index 772dc2b474..989a732a36 100644
--- a/ssl/ssl_init.c
+++ b/ssl/ssl_init.c
@@ -54,8 +54,8 @@ DEFINE_RUN_ONCE_STATIC(ossl_init_load_ssl_strings)
* pulling in all the error strings during static linking
*/
#if !defined(OPENSSL_NO_ERR) && !defined(OPENSSL_NO_AUTOERRINIT)
- OSSL_TRACE(INIT, "ossl_init_load_ssl_strings: err_load_SSL_strings_int()\n");
- err_load_SSL_strings_int();
+ OSSL_TRACE(INIT, "ossl_init_load_ssl_strings: ossl_err_load_SSL_strings()\n");
+ ossl_err_load_SSL_strings();
ssl_strings_inited = 1;
#endif
return 1;