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.3.2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=523f8c53110ed8d16e8841302a7832d79bc24250;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) (cherry picked from commit 0813ffee2fe6d1a4fe4ec04b7b18fe91cc74a34c) --- diff --git a/apps/cms.c b/apps/cms.c index f93c98ac92c..fc9c020bf22 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 b59e14b0b5e..fbd7bda9507 100644 --- a/apps/smime.c +++ b/apps/smime.c @@ -118,7 +118,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,