summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/err/err_all.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/err/err_all.c')
-rw-r--r--src/lib/libcrypto/err/err_all.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/libcrypto/err/err_all.c b/src/lib/libcrypto/err/err_all.c
index 10c463b389..b8315d8272 100644
--- a/src/lib/libcrypto/err/err_all.c
+++ b/src/lib/libcrypto/err/err_all.c
@@ -81,6 +81,8 @@
81#include <openssl/conf.h> 81#include <openssl/conf.h>
82#include <openssl/pkcs12.h> 82#include <openssl/pkcs12.h>
83#include <openssl/rand.h> 83#include <openssl/rand.h>
84#include <openssl/dso.h>
85#include <openssl/engine.h>
84#include <openssl/err.h> 86#include <openssl/err.h>
85 87
86void ERR_load_crypto_strings(void) 88void ERR_load_crypto_strings(void)
@@ -118,5 +120,7 @@ void ERR_load_crypto_strings(void)
118 ERR_load_PKCS7_strings(); 120 ERR_load_PKCS7_strings();
119 ERR_load_PKCS12_strings(); 121 ERR_load_PKCS12_strings();
120 ERR_load_RAND_strings(); 122 ERR_load_RAND_strings();
123 ERR_load_DSO_strings();
124 ERR_load_ENGINE_strings();
121#endif 125#endif
122 } 126 }