summaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-12 12:20:16 +0100
committerMatt Caswell <matt@openssl.org>2016-04-13 08:59:03 +0100
commitb3599dbb6af7e28efae5f08ace99cc75f5e90b2f (patch)
tree186ce0f1525098cb18868274a2d32968a4e30945 /crypto/err
parent974eeb93e3549d378d2c20276a51e2de21d50622 (diff)
Rename int_*() functions to *_int()
There is a preference for suffixes to indicate that a function is internal rather than prefixes. Note: the suffix is only required to disambiguate internal functions and public symbols with the same name (but different case) Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/err')
-rw-r--r--crypto/err/err.c2
-rw-r--r--crypto/err/err_all.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/err/err.c b/crypto/err/err.c
index bb9d5c9997..3ee4e861d4 100644
--- a/crypto/err/err.c
+++ b/crypto/err/err.c
@@ -447,7 +447,7 @@ void ERR_unload_strings(int lib, ERR_STRING_DATA *str)
CRYPTO_THREAD_unlock(err_string_lock);
}
-void int_err_free_strings(void)
+void err_free_strings_int(void)
{
CRYPTO_THREAD_run_once(&err_string_init, do_err_strings_init);
diff --git a/crypto/err/err_all.c b/crypto/err/err_all.c
index 3c8e285588..4add7fa3c2 100644
--- a/crypto/err/err_all.c
+++ b/crypto/err/err_all.c
@@ -88,7 +88,7 @@
#include <openssl/async.h>
#include <openssl/kdf.h>
-void int_err_load_crypto_strings(void)
+void err_load_crypto_strings_int(void)
{
#ifdef OPENSSL_FIPS
FIPS_set_error_callbacks(ERR_put_error, ERR_add_error_vdata);