From: Dr. Matthias St. Pierre Date: Thu, 2 May 2019 12:49:34 +0000 (+0200) Subject: openssl cms: add error message if operation option is missing X-Git-Tag: openssl-3.0.0-alpha1~2108 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=42151b8edb112d23d81f6e0d6606d98797771b4b;p=oweals%2Fopenssl.git openssl cms: add error message if operation option is missing If the `openssl cms` command is called without specifying an operation option, it replies with the following laconic error message: cms: Use -help for summary. This commit adds a helpful error message: No operation option (-encrypt|-decrypt|-sign|-verify|...) specified. Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/8861) --- diff --git a/apps/cms.c b/apps/cms.c index b2037b4df2..2863a92eee 100644 --- a/apps/cms.c +++ b/apps/cms.c @@ -640,6 +640,7 @@ int cms_main(int argc, char **argv) goto opthelp; } } else if (!operation) { + BIO_printf(bio_err, "No operation option (-encrypt|-decrypt|-sign|-verify|...) specified.\n"); goto opthelp; }