summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/crypto/evp/c_all.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libssl/src/crypto/evp/c_all.c')
-rw-r--r--lib/libssl/src/crypto/evp/c_all.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/evp/c_all.c b/lib/libssl/src/crypto/evp/c_all.c
index 1e185830a35..3d390dfbf13 100644
--- a/lib/libssl/src/crypto/evp/c_all.c
+++ b/lib/libssl/src/crypto/evp/c_all.c
@@ -60,8 +60,16 @@
#include "cryptlib.h"
#include <openssl/evp.h>
+#undef OpenSSL_add_all_algorithms
+
void OpenSSL_add_all_algorithms(void)
-{
+ {
+ OPENSSL_add_all_algorithms_noconf();
+ }
+
+void OPENSSL_add_all_algorithms_noconf(void)
+ {
OpenSSL_add_all_ciphers();
OpenSSL_add_all_digests();
-}
+ ENGINE_setup_openbsd();
+ }