From e239e229c8ff9c7deb2002d1c923671970703793 Mon Sep 17 00:00:00 2001 From: Andreas Treichel Date: Sat, 18 May 2024 08:27:46 +0200 Subject: [PATCH] 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) --- apps/cms.c | 2 +- apps/smime.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/cms.c b/apps/cms.c index 3994cb0fcd5..05239cc22b0 100644 --- a/apps/cms.c +++ b/apps/cms.c @@ -132,7 +132,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 52b4a01c232..cac6eab1088 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, -- 2.47.3