diff options
Diffstat (limited to 'src/lib/libssl/src/crypto/err/err_all.c')
-rw-r--r-- | src/lib/libssl/src/crypto/err/err_all.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/libssl/src/crypto/err/err_all.c b/src/lib/libssl/src/crypto/err/err_all.c index fc049e8e88..bd8946d8ba 100644 --- a/src/lib/libssl/src/crypto/err/err_all.c +++ b/src/lib/libssl/src/crypto/err/err_all.c | |||
@@ -104,6 +104,10 @@ | |||
104 | #endif | 104 | #endif |
105 | #include <openssl/comp.h> | 105 | #include <openssl/comp.h> |
106 | 106 | ||
107 | #ifdef OPENSSL_FIPS | ||
108 | #include <openssl/fips.h> | ||
109 | #endif | ||
110 | |||
107 | void ERR_load_crypto_strings(void) | 111 | void ERR_load_crypto_strings(void) |
108 | { | 112 | { |
109 | #ifndef OPENSSL_NO_ERR | 113 | #ifndef OPENSSL_NO_ERR |
@@ -157,4 +161,7 @@ void ERR_load_crypto_strings(void) | |||
157 | #endif | 161 | #endif |
158 | ERR_load_COMP_strings(); | 162 | ERR_load_COMP_strings(); |
159 | #endif | 163 | #endif |
164 | #ifdef OPENSSL_FIPS | ||
165 | ERR_load_FIPS_strings(); | ||
166 | #endif | ||
160 | } | 167 | } |