diff options
author | tb <> | 2023-07-28 09:46:36 +0000 |
---|---|---|
committer | tb <> | 2023-07-28 09:46:36 +0000 |
commit | 681b4eb7a5896143c26eac201c041f6f22357b18 (patch) | |
tree | 1aca488e2c506f6251ea781ae63f28ddea06a4b2 /src/lib/libcrypto/err/err_all.c | |
parent | 52f7bdc5fb75e3796bdf3fa19043d8ee5213cf45 (diff) | |
download | openbsd-681b4eb7a5896143c26eac201c041f6f22357b18.tar.gz openbsd-681b4eb7a5896143c26eac201c041f6f22357b18.tar.bz2 openbsd-681b4eb7a5896143c26eac201c041f6f22357b18.zip |
Drop DSO and define OPENSSL_NO_DSO
DSO and in particular dlopen() was used for dynamic engines, which we
removed a long time ago and for dynamic conf modules, which we removed
only very recently. Now remove this dangerous interface.
ok jsing
Diffstat (limited to 'src/lib/libcrypto/err/err_all.c')
-rw-r--r-- | src/lib/libcrypto/err/err_all.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/err/err_all.c b/src/lib/libcrypto/err/err_all.c index 01c58f39f6..2c8a273f17 100644 --- a/src/lib/libcrypto/err/err_all.c +++ b/src/lib/libcrypto/err/err_all.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: err_all.c,v 1.31 2023/07/28 09:19:59 tb Exp $ */ | 1 | /* $OpenBSD: err_all.c,v 1.32 2023/07/28 09:46:36 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -69,7 +69,6 @@ | |||
69 | #include <openssl/comp.h> | 69 | #include <openssl/comp.h> |
70 | #include <openssl/conf.h> | 70 | #include <openssl/conf.h> |
71 | #include <openssl/ct.h> | 71 | #include <openssl/ct.h> |
72 | #include <openssl/dso.h> | ||
73 | #include <openssl/err.h> | 72 | #include <openssl/err.h> |
74 | #include <openssl/evp.h> | 73 | #include <openssl/evp.h> |
75 | #include <openssl/kdf.h> | 74 | #include <openssl/kdf.h> |
@@ -128,7 +127,6 @@ ERR_load_crypto_strings_internal(void) | |||
128 | #ifndef OPENSSL_NO_DSA | 127 | #ifndef OPENSSL_NO_DSA |
129 | ERR_load_DSA_strings(); | 128 | ERR_load_DSA_strings(); |
130 | #endif | 129 | #endif |
131 | ERR_load_DSO_strings(); | ||
132 | #ifndef OPENSSL_NO_EC | 130 | #ifndef OPENSSL_NO_EC |
133 | ERR_load_EC_strings(); | 131 | ERR_load_EC_strings(); |
134 | #endif | 132 | #endif |