diff options
author | Rich Salz <rsalz@akamai.com> | 2019-11-08 06:08:30 +1000 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2019-11-08 06:08:30 +1000 |
commit | 5388f9862d9aaf3c7cf7a70c1e36e7e983c26cfc (patch) | |
tree | bda368ec4d8855ac5d3e2a31648769a5dabfaac9 /apps/info.c | |
parent | ab14d2af5386897eba8307c9f3220a6d775c0898 (diff) | |
download | openssl-new-5388f9862d9aaf3c7cf7a70c1e36e7e983c26cfc.tar.gz |
Add "sections" to -help output
Remove "Valid options" label, since all commands have sections (and
[almost] always the first one is "General options").
Have "list --options" ignore section headers
Reformat ts's additional help
Add output section
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/9953)
Diffstat (limited to 'apps/info.c')
-rw-r--r-- | apps/info.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/info.c b/apps/info.c index 586917298d..ae6e34c9bc 100644 --- a/apps/info.c +++ b/apps/info.c @@ -18,7 +18,11 @@ typedef enum OPTION_choice { } OPTION_CHOICE; const OPTIONS info_options[] = { + + OPT_SECTION("General"), {"help", OPT_HELP, '-', "Display this summary"}, + + OPT_SECTION("Output"), {"configdir", OPT_CONFIGDIR, '-', "Default configuration file directory"}, {"enginesdir", OPT_ENGINESDIR, '-', "Default engine module directory"}, {"modulesdir", OPT_MODULESDIR, '-', |