From a0e8da5d92718052343146e5b5ed85c2fe74492b Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 19 Oct 2015 05:24:16 +0200 Subject: [PATCH] Don't forget to load the CT error strings Reviewed-by: Matt Caswell --- crypto/err/err_all.c | 4 ++++ 1 file changed, 4 insertions(+) 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 #endif +#include 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 } -- 2.25.1