From: Andreas Treichel Date: Sat, 18 May 2024 06:27:46 +0000 (+0200) Subject: apps/cms.c, apps/smime.c: Fix -crlfeol help messages X-Git-Tag: openssl-3.4.0-alpha1~133 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0813ffee2fe6d1a4fe4ec04b7b18fe91cc74a34c;p=thirdparty%2Fopenssl.git apps/cms.c, apps/smime.c: Fix -crlfeol help messages CLA: trivial Reviewed-by: Todd Short Reviewed-by: Tom Cosgrove Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/24434) --- diff --git a/apps/cms.c b/apps/cms.c index daa1d7c1a6b..c5ec89fa573 100644 --- a/apps/cms.c +++ b/apps/cms.c @@ -133,7 +133,7 @@ const OPTIONS cms_options[] = { {"binary", OPT_BINARY, '-', "Treat input as binary: do not translate to canonical form"}, {"crlfeol", OPT_CRLFEOL, '-', - "Use CRLF as EOL termination instead of CR only" }, + "Use CRLF as EOL termination instead of LF only" }, {"asciicrlf", OPT_ASCIICRLF, '-', "Perform CRLF canonicalisation when signing"}, diff --git a/apps/smime.c b/apps/smime.c index 88ce8fd98d9..dc809420262 100644 --- a/apps/smime.c +++ b/apps/smime.c @@ -121,7 +121,7 @@ const OPTIONS smime_options[] = { "Do not load certificates from the default certificates store"}, {"nochain", OPT_NOCHAIN, '-', "set PKCS7_NOCHAIN so certificates contained in the message are not used as untrusted CAs" }, - {"crlfeol", OPT_CRLFEOL, '-', "Use CRLF as EOL termination instead of CR only"}, + {"crlfeol", OPT_CRLFEOL, '-', "Use CRLF as EOL termination instead of LF only"}, OPT_R_OPTIONS, OPT_V_OPTIONS,