From: Dr. David von Oheimb Date: Fri, 3 Dec 2021 09:36:50 +0000 (+0100) Subject: apps/cmp.c: Fix glitch in -newkeypass warning and extend warnings for genm X-Git-Tag: openssl-3.2.0-alpha1~2447 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bbaabd16e9fd090ecdc9688f3364c3dbc56512d4;p=thirdparty%2Fopenssl.git apps/cmp.c: Fix glitch in -newkeypass warning and extend warnings for genm Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale Reviewed-by: Hugo Landau (Merged from https://github.com/openssl/openssl/pull/18657) --- diff --git a/apps/cmp.c b/apps/cmp.c index 3cd0ffcbe20..a433f2b324a 100644 --- a/apps/cmp.c +++ b/apps/cmp.c @@ -1583,11 +1583,11 @@ static int setup_request_ctx(OSSL_CMP_CTX *ctx, ENGINE *engine) && opt_oldcert == NULL && opt_cert == NULL) CMP_warn("missing -recipient, -srvcert, -issuer, -oldcert or -cert; recipient will be set to \"NULL-DN\""); - if (opt_cmd == CMP_P10CR || opt_cmd == CMP_RR) { - const char *msg = "option is ignored for 'p10cr' and 'rr' commands"; + if (opt_cmd == CMP_P10CR || opt_cmd == CMP_RR || opt_cmd == CMP_GENM) { + const char *msg = "option is ignored for 'p10cr', 'rr', and 'genm' commands"; if (opt_newkeypass != NULL) - CMP_warn1("-newkeytype %s", msg); + CMP_warn1("-newkeypass %s", msg); if (opt_newkey != NULL) CMP_warn1("-newkey %s", msg); if (opt_days != 0)