diff options
author | Matt Caswell <matt@openssl.org> | 2016-04-14 14:37:41 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-14 14:50:36 +0200 |
commit | c3a64b52788df139d649efaaf993c27dc89ba6ce (patch) | |
tree | 08d6e6f9d210b291a3334e691d0afc899ae7fd3a /crypto | |
parent | Write POD page. (diff) | |
download | openssl-c3a64b52788df139d649efaaf993c27dc89ba6ce.tar.xz openssl-c3a64b52788df139d649efaaf993c27dc89ba6ce.zip |
The err_cleanup() funtion is internal so shouldn't be exported
Running a "make update" wanted to add err_cleanup to libcrypto.num which
is wrong.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/err/err.c | 2 | ||||
-rw-r--r-- | crypto/include/internal/err_int.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/crypto/err/err.c b/crypto/err/err.c index aff3ae5a24..b0fd19e7ae 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c @@ -114,11 +114,11 @@ #include <internal/cryptlib_int.h> #include <internal/threads.h> #include <internal/err.h> +#include <internal/err_int.h> #include <openssl/lhash.h> #include <openssl/crypto.h> #include <openssl/buffer.h> #include <openssl/bio.h> -#include "internal/err.h" #include <openssl/opensslconf.h> static void err_load_strings(int lib, ERR_STRING_DATA *str); diff --git a/crypto/include/internal/err_int.h b/crypto/include/internal/err_int.h index ad3f7ce49b..7f1037e939 100644 --- a/crypto/include/internal/err_int.h +++ b/crypto/include/internal/err_int.h @@ -12,5 +12,6 @@ # define INTERNAL_ERR_INT_H void err_load_crypto_strings_int(void); +void err_cleanup(void); #endif |