From: Richard Levitte Date: Mon, 19 Oct 2015 03:24:16 +0000 (+0200) Subject: Don't forget to load the CT error strings X-Git-Tag: OpenSSL_1_1_0-pre1~401 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a0e8da5d92718052343146e5b5ed85c2fe74492b;p=oweals%2Fopenssl.git Don't forget to load the CT error strings Reviewed-by: Matt Caswell --- 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 }