diff options
author | Matt Caswell <matt@openssl.org> | 2019-11-12 15:26:15 +0000 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2019-11-14 09:59:01 +0000 |
commit | 1aa516b9438497bec0bf6c2aea55ce00e90cdbb6 (patch) | |
tree | bb3e02e917135544876da1b458b28d19c5c83e5e /apps/req.c | |
parent | 1640d48c5b4ee0a3ff5a2a5015ee17ac163d9cd4 (diff) | |
download | openssl-new-1aa516b9438497bec0bf6c2aea55ce00e90cdbb6.tar.gz |
Fix no-engine
Fix a misplaced "#endif" which was disabling a little too much code.
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10423)
Diffstat (limited to 'apps/req.c')
-rw-r--r-- | apps/req.c | 2 |
1 files changed, 1 insertions, 1 deletions
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"}, |