summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-11-19 13:12:06 +0000
committertb <>2023-11-19 13:12:06 +0000
commitdf1b1c320d2e56f9cbcb72e3a096e9fce71ccb23 (patch)
tree1d00a7295bc2b6451c01f592da597702fba842a7
parentfb1118fbee181ebbe9e392e154b296f14bcd5354 (diff)
downloadopenbsd-df1b1c320d2e56f9cbcb72e3a096e9fce71ccb23.tar.gz
openbsd-df1b1c320d2e56f9cbcb72e3a096e9fce71ccb23.tar.bz2
openbsd-df1b1c320d2e56f9cbcb72e3a096e9fce71ccb23.zip
Remove last OPENSSL_NO_ENGINE from libssl regress
-rw-r--r--src/regress/lib/libssl/ssl/ssltest.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/regress/lib/libssl/ssl/ssltest.c b/src/regress/lib/libssl/ssl/ssltest.c
index f95ea44a91..23d7d48f33 100644
--- a/src/regress/lib/libssl/ssl/ssltest.c
+++ b/src/regress/lib/libssl/ssl/ssltest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssltest.c,v 1.43 2023/08/15 11:20:57 tb Exp $ */ 1/* $OpenBSD: ssltest.c,v 1.44 2023/11/19 13:12:06 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 *
@@ -167,9 +167,6 @@
167#include <openssl/x509.h> 167#include <openssl/x509.h>
168#include <openssl/x509v3.h> 168#include <openssl/x509v3.h>
169#include <openssl/ssl.h> 169#include <openssl/ssl.h>
170#ifndef OPENSSL_NO_ENGINE
171#include <openssl/engine.h>
172#endif
173#include <openssl/err.h> 170#include <openssl/err.h>
174#include <openssl/rand.h> 171#include <openssl/rand.h>
175#include <openssl/rsa.h> 172#include <openssl/rsa.h>
@@ -762,9 +759,6 @@ end:
762 SSL_CTX_free(c_ctx); 759 SSL_CTX_free(c_ctx);
763 BIO_free(bio_stdout); 760 BIO_free(bio_stdout);
764 761
765#ifndef OPENSSL_NO_ENGINE
766 ENGINE_cleanup();
767#endif
768 CRYPTO_cleanup_all_ex_data(); 762 CRYPTO_cleanup_all_ex_data();
769 ERR_free_strings(); 763 ERR_free_strings();
770 ERR_remove_thread_state(NULL); 764 ERR_remove_thread_state(NULL);