summaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-06 10:39:00 +0100
committerMatt Caswell <matt@openssl.org>2016-04-13 08:52:34 +0100
commit342c21cd8bb42b6750abfc49cac26dc288de98c3 (patch)
tree39edffbda0bcf71d4eea518a5f0a9138c73f7aca /crypto/err
parent5eb8f71204626843a5ff1e7016d5d9e5a9598ee8 (diff)
Rename lots of *_intern or *_internal function to int_*
There was a lot of naming inconsistency, so we try and standardise on one form. 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 b937155c98..bb9d5c9997 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 err_free_strings_intern(void)
+void int_err_free_strings(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 f939db702e..3c8e285588 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 err_load_crypto_strings_intern(void)
+void int_err_load_crypto_strings(void)
{
#ifdef OPENSSL_FIPS
FIPS_set_error_callbacks(ERR_put_error, ERR_add_error_vdata);