From 872b7979c7c5f5d1f412964eb57507505c7a2ff9 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Tue, 27 Apr 2021 11:44:05 +0200 Subject: [PATCH] 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) --- apps/crl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2