diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-11-19 15:46:11 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-11-19 15:46:11 +0000 |
commit | 262ab13b8848734595f30f669ed9d9798c69f577 (patch) | |
tree | ecc5c2141b111fc5f3726cdf0740fee4b9c96a47 /lib/libcrypto/err | |
parent | 4ef3ce35c94603c216b74510017ea54572776d98 (diff) |
Unifdef OPENSSL_NO_ENGINE in libcrypto
This is mechanical apart from a few manual edits to avoid doubled empty
lines.
ok jsing
Diffstat (limited to 'lib/libcrypto/err')
-rw-r--r-- | lib/libcrypto/err/err_all.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/libcrypto/err/err_all.c b/lib/libcrypto/err/err_all.c index 2c8a273f17e..4829e46a1a2 100644 --- a/lib/libcrypto/err/err_all.c +++ b/lib/libcrypto/err/err_all.c @@ -1,4 +1,4 @@ -/* $OpenBSD: err_all.c,v 1.32 2023/07/28 09:46:36 tb Exp $ */ +/* $OpenBSD: err_all.c,v 1.33 2023/11/19 15:46:09 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -91,9 +91,6 @@ #ifndef OPENSSL_NO_EC #include <openssl/ec.h> #endif -#ifndef OPENSSL_NO_ENGINE -#include <openssl/engine.h> -#endif #ifndef OPENSSL_NO_RSA #include <openssl/rsa.h> #endif @@ -130,9 +127,6 @@ ERR_load_crypto_strings_internal(void) #ifndef OPENSSL_NO_EC ERR_load_EC_strings(); #endif -#ifndef OPENSSL_NO_ENGINE - ERR_load_ENGINE_strings(); -#endif ERR_load_EVP_strings(); #ifndef OPENSSL_NO_GOST ERR_load_GOST_strings(); |