diff options
author | Rich Salz <rsalz@akamai.com> | 2019-09-23 18:29:20 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-09-24 14:22:43 +0200 |
commit | 0773687a2453c3553933a3627e798997abe41691 (patch) | |
tree | 6cd7632fc9c16a66907094880d59056b0528b287 /apps | |
parent | fix for dsa key size feature request issue: pkey -text or -text_pub should sh... (diff) | |
download | openssl-0773687a2453c3553933a3627e798997abe41691.tar.xz openssl-0773687a2453c3553933a3627e798997abe41691.zip |
Fix bugs in "info" commands flags
Remove -c/-e/-m aliases, OpenSSL commands don't do that.
Fix typo's in the documentation.
Fix -module flag to print the right thing.
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9986)
Diffstat (limited to 'apps')
-rw-r--r-- | apps/info.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/info.c b/apps/info.c index 4656141184..586917298d 100644 --- a/apps/info.c +++ b/apps/info.c @@ -20,12 +20,8 @@ typedef enum OPTION_choice { const OPTIONS info_options[] = { {"help", OPT_HELP, '-', "Display this summary"}, {"configdir", OPT_CONFIGDIR, '-', "Default configuration file directory"}, - {"c", OPT_CONFIGDIR, '-', "Default configuration file directory"}, {"enginesdir", OPT_ENGINESDIR, '-', "Default engine module directory"}, - {"e", OPT_ENGINESDIR, '-', "Default engine module directory"}, - {"modulesdir", OPT_ENGINESDIR, '-', - "Default module directory (other than engine modules)"}, - {"m", OPT_ENGINESDIR, '-', + {"modulesdir", OPT_MODULESDIR, '-', "Default module directory (other than engine modules)"}, {"dsoext", OPT_DSOEXT, '-', "Configured extension for modules"}, {"dirnamesep", OPT_DIRNAMESEP, '-', "Directory-filename separator"}, |