diff options
author | Rich Salz <rsalz@akamai.com> | 2019-09-20 03:33:17 +0200 |
---|---|---|
committer | Tomas Mraz <tmraz@fedoraproject.org> | 2019-11-20 09:49:52 +0100 |
commit | 92de469fbd62a77a36dad5fde3a0ac7034071a59 (patch) | |
tree | bd2dfc3fc90d85af938a0e837813f66c5d3fa16c /apps/openssl.c | |
parent | Add test for non-default sized keys in variable key size ciphers (diff) | |
download | openssl-92de469fbd62a77a36dad5fde3a0ac7034071a59.tar.xz openssl-92de469fbd62a77a36dad5fde3a0ac7034071a59.zip |
Document command parameters.
Add documentation for all commands that have parameters.
Fix a couple of minor doc and programming bugs, too.
Fixes #10313
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10371)
Diffstat (limited to 'apps/openssl.c')
-rw-r--r-- | apps/openssl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/openssl.c b/apps/openssl.c index 9aabad5e09..66189ca434 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -384,11 +384,13 @@ typedef enum HELP_CHOICE { } HELP_CHOICE; const OPTIONS help_options[] = { - {OPT_HELP_STR, 1, '-', "Usage: help [options]\n"}, - {OPT_HELP_STR, 1, '-', " help [command]\n"}, + {OPT_HELP_STR, 1, '-', "Usage: help [options] [command]\n"}, OPT_SECTION("General"), {"help", OPT_hHELP, '-', "Display this summary"}, + + OPT_PARAMETERS(), + {"command", 0, 0, "Name of command to display help (optional)"}, {NULL} }; |