From 1aa516b9438497bec0bf6c2aea55ce00e90cdbb6 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 12 Nov 2019 15:26:15 +0000 Subject: [PATCH] Fix no-engine Fix a misplaced "#endif" which was disabling a little too much code. Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/10423) --- apps/req.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/req.c b/apps/req.c index 3667ac7bce..b084f108bd 100644 --- a/apps/req.c +++ b/apps/req.c @@ -101,10 +101,10 @@ const OPTIONS req_options[] = { {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"}, {"keygen_engine", OPT_KEYGEN_ENGINE, 's', "Specify engine to be used for key generation operations"}, +#endif {"in", OPT_IN, '<', "Input file"}, {"inform", OPT_INFORM, 'F', "Input format - DER or PEM"}, {"verify", OPT_VERIFY, '-', "Verify signature on REQ"}, -#endif OPT_SECTION("Certificate"), {"new", OPT_NEW, '-', "New request"}, -- 2.39.2