From fb1118fbee181ebbe9e392e154b296f14bcd5354 Mon Sep 17 00:00:00 2001 From: tb <> Date: Sun, 19 Nov 2023 13:11:06 +0000 Subject: Unifdef OPENSSL_NO_ENGINE in libcrypto regress --- src/regress/lib/libcrypto/dsa/dsatest.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/regress/lib/libcrypto/dsa/dsatest.c') diff --git a/src/regress/lib/libcrypto/dsa/dsatest.c b/src/regress/lib/libcrypto/dsa/dsatest.c index 62343455f3..10ebc3a9f8 100644 --- a/src/regress/lib/libcrypto/dsa/dsatest.c +++ b/src/regress/lib/libcrypto/dsa/dsatest.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dsatest.c,v 1.9 2023/08/20 22:22:55 tb Exp $ */ +/* $OpenBSD: dsatest.c,v 1.10 2023/11/19 13:11:05 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -137,12 +137,10 @@ main(int argc, char **argv) if ((dsa = DSA_new()) == NULL) goto end; -#ifdef OPENSSL_NO_ENGINE if (DSA_get0_engine(dsa) != NULL) { BIO_printf(bio_err, "ENGINE was not NULL\n"); goto end; } -#endif if (!DSA_generate_parameters_ex(dsa, 512, seed, 20, &counter, &h, cb)) goto end; -- cgit v1.2.3-55-g6feb