diff options
author | Richard Levitte <levitte@openssl.org> | 2018-10-19 00:36:04 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2018-11-02 10:58:35 +0100 |
commit | d91d443f0d26262148d1dc9d29f9fdf025b958ca (patch) | |
tree | 3be6e5b89414bc3806e4f2f7ecdba38bc4a6c4a5 /apps/x509.c | |
parent | Fix a doc-nit in EVP_PKEY_CTX_ctrl.pod (diff) | |
download | openssl-d91d443f0d26262148d1dc9d29f9fdf025b958ca.tar.xz openssl-d91d443f0d26262148d1dc9d29f9fdf025b958ca.zip |
apps: Stop pretending to care about Netscape keys
The documentation says some commands care, but the code says differently.
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/7440)
Diffstat (limited to 'apps/x509.c')
-rw-r--r-- | apps/x509.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/x509.c b/apps/x509.c index d40960c0b9..81291a9a4f 100644 --- a/apps/x509.c +++ b/apps/x509.c @@ -67,10 +67,10 @@ typedef enum OPTION_choice { const OPTIONS x509_options[] = { {"help", OPT_HELP, '-', "Display this summary"}, {"inform", OPT_INFORM, 'f', - "Input format - default PEM (one of DER, NET or PEM)"}, + "Input format - default PEM (one of DER or PEM)"}, {"in", OPT_IN, '<', "Input file - default stdin"}, {"outform", OPT_OUTFORM, 'f', - "Output format - default PEM (one of DER, NET or PEM)"}, + "Output format - default PEM (one of DER or PEM)"}, {"out", OPT_OUT, '>', "Output file - default stdout"}, {"keyform", OPT_KEYFORM, 'F', "Private key format - default PEM"}, {"passin", OPT_PASSIN, 's', "Private key password/pass-phrase source"}, |