aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/err
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-10-19 05:24:16 +0200
committerRichard Levitte <levitte@openssl.org>2015-10-21 23:57:29 +0200
commita0e8da5d92718052343146e5b5ed85c2fe74492b (patch)
tree6ab91ca09541ade9e14e1632bfac42fee8e6db80 /crypto/err
parentcc79f06c0af2a23cc6f7c01599f484a094b37c3a (diff)
downloadopenssl-a0e8da5d92718052343146e5b5ed85c2fe74492b.tar.gz
Don't forget to load the CT error strings
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/err')
-rw-r--r--crypto/err/err_all.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/err/err_all.c b/crypto/err/err_all.c
index b844167f94..d9a2a57682 100644
--- a/crypto/err/err_all.c
+++ b/crypto/err/err_all.c
@@ -105,6 +105,7 @@
#ifndef OPENSSL_NO_JPAKE
# include <openssl/jpake.h>
#endif
+#include <internal/ct_int.h>
void ERR_load_crypto_strings(void)
{
@@ -161,5 +162,8 @@ void ERR_load_crypto_strings(void)
# ifndef OPENSSL_NO_JPAKE
ERR_load_JPAKE_strings();
# endif
+# ifndef OPENSSL_NO_CT
+ ERR_load_CT_strings();
+# endif
#endif
}