summaryrefslogtreecommitdiffstats
path: root/apps/cms.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2014-02-12 15:15:55 +0000
committerDr. Stephen Henson <steve@openssl.org>2014-02-13 14:35:56 +0000
commit847865d0f9810a2f9c0eb7a5dc5d0c29f50b84ba (patch)
tree96020e68bfaf325294ad849b78fe991c42ad0197 /apps/cms.c
parent4dce704145d2e197904116378d934516d21f0360 (diff)
Add suppot for ASCII with CRLF canonicalisation.
Diffstat (limited to 'apps/cms.c')
-rw-r--r--apps/cms.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/cms.c b/apps/cms.c
index d15e203f9c..ddc3d5ec17 100644
--- a/apps/cms.c
+++ b/apps/cms.c
@@ -258,6 +258,8 @@ int MAIN(int argc, char **argv)
flags |= CMS_DEBUG_DECRYPT;
else if (!strcmp (*args, "-text"))
flags |= CMS_TEXT;
+ else if (!strcmp (*args, "-asciicrlf"))
+ flags |= CMS_ASCIICRLF;
else if (!strcmp (*args, "-nointern"))
flags |= CMS_NOINTERN;
else if (!strcmp (*args, "-noverify")