diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-11-19 13:12:07 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-11-19 13:12:07 +0000 |
commit | 2ab2670db62d3bae40e745a841dccd77315af7c9 (patch) | |
tree | 35e55ab2da04ac346e38bacc391daf98296199b6 /regress | |
parent | 7c8dcacf56149562237bfc2cf3077f9e921cdc65 (diff) |
Remove last OPENSSL_NO_ENGINE from libssl regress
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libssl/ssl/ssltest.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/regress/lib/libssl/ssl/ssltest.c b/regress/lib/libssl/ssl/ssltest.c index f95ea44a91a..23d7d48f33a 100644 --- a/regress/lib/libssl/ssl/ssltest.c +++ b/regress/lib/libssl/ssl/ssltest.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssltest.c,v 1.43 2023/08/15 11:20:57 tb Exp $ */ +/* $OpenBSD: ssltest.c,v 1.44 2023/11/19 13:12:06 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -167,9 +167,6 @@ #include <openssl/x509.h> #include <openssl/x509v3.h> #include <openssl/ssl.h> -#ifndef OPENSSL_NO_ENGINE -#include <openssl/engine.h> -#endif #include <openssl/err.h> #include <openssl/rand.h> #include <openssl/rsa.h> @@ -762,9 +759,6 @@ end: SSL_CTX_free(c_ctx); BIO_free(bio_stdout); -#ifndef OPENSSL_NO_ENGINE - ENGINE_cleanup(); -#endif CRYPTO_cleanup_all_ex_data(); ERR_free_strings(); ERR_remove_thread_state(NULL); |