aboutsummaryrefslogtreecommitdiffstats
path: root/apps/smime.c
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-07-31 19:02:50 +0200
committerRich Salz <rsalz@openssl.org>2016-09-19 21:21:38 -0400
commit12d56b2992ebd61e1b30c99ca1898dde42345cf7 (patch)
tree7b0d3665fd88d3abf0fe0b40214fb8c1658b33e1 /apps/smime.c
parent9205ebeb8e448b2d6948b9e5d78ecf309c0ed33c (diff)
downloadopenssl-12d56b2992ebd61e1b30c99ca1898dde42345cf7.tar.gz
Fix various missing option help messages ...
Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1585)
Diffstat (limited to 'apps/smime.c')
-rw-r--r--apps/smime.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/apps/smime.c b/apps/smime.c
index b98c583fb0..082109b73c 100644
--- a/apps/smime.c
+++ b/apps/smime.c
@@ -88,14 +88,15 @@ OPTIONS smime_options[] = {
"Do not load the default certificates file"},
{"no-CApath", OPT_NOCAPATH, '-',
"Do not load certificates from the default certificates directory"},
- {"resign", OPT_RESIGN, '-'},
- {"nochain", OPT_NOCHAIN, '-'},
- {"nosmimecap", OPT_NOSMIMECAP, '-'},
- {"stream", OPT_STREAM, '-'},
- {"indef", OPT_INDEF, '-'},
- {"noindef", OPT_NOINDEF, '-'},
- {"nooldmime", OPT_NOOLDMIME, '-'},
- {"crlfeol", OPT_CRLFEOL, '-'},
+ {"resign", OPT_RESIGN, '-', "Resign a signed message"},
+ {"nochain", OPT_NOCHAIN, '-',
+ "set PKCS7_NOCHAIN so certificates contained in the message are not used as untrusted CAs" },
+ {"nosmimecap", OPT_NOSMIMECAP, '-', "Omit the SMIMECapabilities attribute"},
+ {"stream", OPT_STREAM, '-', "Enable CMS streaming" },
+ {"indef", OPT_INDEF, '-', "Same as -stream" },
+ {"noindef", OPT_NOINDEF, '-', "Disable CMS streaming"},
+ {"nooldmime", OPT_NOOLDMIME, '-', NULL},
+ {"crlfeol", OPT_CRLFEOL, '-', "Use CRLF as EOL termination instead of CR only"},
{"rand", OPT_RAND, 's',
"Load the file(s) into the random number generator"},
{"passin", OPT_PASSIN, 's', "Input file pass phrase source"},