diff options
author | Matt Caswell <matt@openssl.org> | 2016-04-04 18:00:04 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-13 09:52:33 +0200 |
commit | cbf6959fe8ff51730a397ea426075d547ec5d7a8 (patch) | |
tree | eef161225ca88ad3d6471c81c942dc6c7f3a26df /include/internal | |
parent | Deprecate ENGINE_cleanup() and make it a no-op (diff) | |
download | openssl-cbf6959fe8ff51730a397ea426075d547ec5d7a8.tar.xz openssl-cbf6959fe8ff51730a397ea426075d547ec5d7a8.zip |
Deprecate CONF_modules_free() and make it a no-op
CONF_modules_free() should not be called expicitly - we should leave
auto-deinit to clean this up instead.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'include/internal')
-rw-r--r-- | include/internal/conf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/internal/conf.h b/include/internal/conf.h index 3bd6069a59..e21f22f9d0 100644 --- a/include/internal/conf.h +++ b/include/internal/conf.h @@ -53,6 +53,7 @@ struct ossl_init_settings_st { void openssl_config_internal(const char *config_name); void openssl_no_config_internal(void); +void conf_modules_free_intern(void); #ifdef __cplusplus } |