Add help text for some verify options

Fills in the help text for a number of options to verify that were blank.

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Matt Caswell 2015-06-25 12:27:05 +01:00
parent 79a55b1f27
commit a64ba70dbb

View File

@ -83,14 +83,18 @@ OPTIONS verify_options[] = {
{OPT_HELP_STR, 1, '-', "Usage: %s [options] cert.pem...\n"}, {OPT_HELP_STR, 1, '-', "Usage: %s [options] cert.pem...\n"},
{OPT_HELP_STR, 1, '-', "Valid options are:\n"}, {OPT_HELP_STR, 1, '-', "Valid options are:\n"},
{"help", OPT_HELP, '-', "Display this summary"}, {"help", OPT_HELP, '-', "Display this summary"},
{"verbose", OPT_VERBOSE, '-'}, {"verbose", OPT_VERBOSE, '-',
{"CApath", OPT_CAPATH, '/'}, "Print extra information about the operations being performed."},
{"CAfile", OPT_CAFILE, '<'}, {"CApath", OPT_CAPATH, '/', "A directory of trusted certificates"},
{"untrusted", OPT_UNTRUSTED, '<'}, {"CAfile", OPT_CAFILE, '<', "A file of trusted certificates"},
{"trusted", OPT_TRUSTED, '<'}, {"untrusted", OPT_UNTRUSTED, '<', "A file of untrusted certificates"},
{"CRLfile", OPT_CRLFILE, '<'}, {"trusted", OPT_TRUSTED, '<', "A file of additional trusted certificates"},
{"crl_download", OPT_CRL_DOWNLOAD, '-'}, {"CRLfile", OPT_CRLFILE, '<',
{"show_chain", OPT_SHOW_CHAIN, '-'}, "File containing one or more CRL's (in PEM format) to load"},
{"crl_download", OPT_CRL_DOWNLOAD, '-',
"Attempt to download CRL information for this certificate"},
{"show_chain", OPT_SHOW_CHAIN, '-',
"Display information about the certificate chain"},
OPT_V_OPTIONS, OPT_V_OPTIONS,
#ifndef OPENSSL_NO_ENGINE #ifndef OPENSSL_NO_ENGINE
{"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"}, {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},