34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 48fc6cd59c6d4a8f6ecd57d85d6ef4e6373ff147 Mon Sep 17 00:00:00 2001
|
|
From: Nihal Jere <nihal@nihaljere.xyz>
|
|
Date: Tue, 21 Jul 2020 11:31:01 -0500
|
|
Subject: [PATCH 055/147] fixed swapped parameters descriptions for x509
|
|
|
|
CLA: trivial
|
|
|
|
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
|
|
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
|
|
(Merged from https://github.com/openssl/openssl/pull/12505)
|
|
---
|
|
apps/x509.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/apps/x509.c b/apps/x509.c
|
|
index 5bb110f..1043eba 100644
|
|
--- a/apps/x509.c
|
|
+++ b/apps/x509.c
|
|
@@ -140,9 +140,9 @@ const OPTIONS x509_options[] = {
|
|
{"", OPT_MD, '-', "Any supported digest"},
|
|
#ifndef OPENSSL_NO_MD5
|
|
{"subject_hash_old", OPT_SUBJECT_HASH_OLD, '-',
|
|
- "Print old-style (MD5) issuer hash value"},
|
|
- {"issuer_hash_old", OPT_ISSUER_HASH_OLD, '-',
|
|
"Print old-style (MD5) subject hash value"},
|
|
+ {"issuer_hash_old", OPT_ISSUER_HASH_OLD, '-',
|
|
+ "Print old-style (MD5) issuer hash value"},
|
|
#endif
|
|
#ifndef OPENSSL_NO_ENGINE
|
|
{"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
|
|
--
|
|
1.8.3.1
|
|
|