From dbd0244a16ebf577401e92cce374467dbc3226df Mon Sep 17 00:00:00 2001 From: Pauli Date: Fri, 6 Aug 2021 10:01:15 +1000 Subject: [PATCH] genpkey: -quiet doesn't take an argument Fixes #16238 Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/16240) --- apps/genpkey.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/genpkey.c b/apps/genpkey.c index d327bcab07f..d00754eeaca 100644 --- a/apps/genpkey.c +++ b/apps/genpkey.c @@ -37,7 +37,7 @@ const OPTIONS genpkey_options[] = { #endif {"paramfile", OPT_PARAMFILE, '<', "Parameters file"}, {"algorithm", OPT_ALGORITHM, 's', "The public key algorithm"}, - {"quiet", OPT_QUIET, 's', "Do not output status while generating keys"}, + {"quiet", OPT_QUIET, '-', "Do not output status while generating keys"}, {"pkeyopt", OPT_PKEYOPT, 's', "Set the public key algorithm option as opt:value"}, OPT_CONFIG_OPTION, -- 2.47.3