From: Tomas Mraz Date: Tue, 27 Apr 2021 09:44:05 +0000 (+0200) Subject: crl: noout is not an output item X-Git-Tag: openssl-3.0.0-alpha16~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=872b7979c7c5f5d1f412964eb57507505c7a2ff9;p=thirdparty%2Fopenssl.git crl: noout is not an output item Fixes #15034 Reviewed-by: Richard Levitte Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/15044) --- diff --git a/apps/crl.c b/apps/crl.c index 7f09d476c1f..fbdd2a896c7 100644 --- a/apps/crl.c +++ b/apps/crl.c @@ -177,7 +177,7 @@ int crl_main(int argc, char **argv) nextupdate = ++num; break; case OPT_NOOUT: - noout = ++num; + noout = 1; break; case OPT_FINGERPRINT: fingerprint = ++num;