From b3599dbb6af7e28efae5f08ace99cc75f5e90b2f Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 12 Apr 2016 12:20:16 +0100 Subject: 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 Reviewed-by: Richard Levitte --- crypto/conf/conf_mod.c | 2 +- crypto/conf/conf_sap.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'crypto/conf') diff --git a/crypto/conf/conf_mod.c b/crypto/conf/conf_mod.c index 101d1f1e75..cef805dfca 100644 --- a/crypto/conf/conf_mod.c +++ b/crypto/conf/conf_mod.c @@ -460,7 +460,7 @@ int CONF_module_add(const char *name, conf_init_func *ifunc, return 0; } -void int_conf_modules_free(void) +void conf_modules_free_int(void) { CONF_modules_finish(); CONF_modules_unload(1); diff --git a/crypto/conf/conf_sap.c b/crypto/conf/conf_sap.c index 929c2a32de..ab034c2111 100644 --- a/crypto/conf/conf_sap.c +++ b/crypto/conf/conf_sap.c @@ -84,7 +84,7 @@ void OPENSSL_config(const char *config_name) } #endif -void int_openssl_config(const char *config_name) +void openssl_config_int(const char *config_name) { if (openssl_configured) return; @@ -103,7 +103,7 @@ void int_openssl_config(const char *config_name) openssl_configured = 1; } -void int_openssl_no_config(void) +void openssl_no_config_int(void) { openssl_configured = 1; } -- cgit v1.2.3