[openssl-commits] [openssl] master update
Tim Hudson
tjh at openssl.org
Mon Jun 15 04:55:58 UTC 2015
The branch master has been updated
via 29eca1c0d58026792b50f7fd7f447f7a5fe63b5f (commit)
from e58ddf0af86e391cd1a3d0eb2641844607f1e300 (commit)
- Log -----------------------------------------------------------------
commit 29eca1c0d58026792b50f7fd7f447f7a5fe63b5f
Author: Tim Hudson <tjh at openssl.org>
Date: Mon Jun 15 14:55:34 2015 +1000
Fix argument processing error from the option parsing change over.
Reviewed-by: Rich Salz <rsalz at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
apps/req.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/apps/req.c b/apps/req.c
index 00d7c4a..712037d 100644
--- a/apps/req.c
+++ b/apps/req.c
@@ -125,7 +125,7 @@ typedef enum OPTION_choice {
OPT_KEYOUT, OPT_PASSIN, OPT_PASSOUT, OPT_RAND, OPT_NEWKEY,
OPT_PKEYOPT, OPT_SIGOPT, OPT_BATCH, OPT_NEWHDR, OPT_MODULUS,
OPT_VERIFY, OPT_NODES, OPT_NOOUT, OPT_VERBOSE, OPT_UTF8,
- OPT_NAMEOPT, OPT_REQOPT, OPT_SUBJECT, OPT_TEXT, OPT_X509,
+ OPT_NAMEOPT, OPT_REQOPT, OPT_SUBJ, OPT_SUBJECT, OPT_TEXT, OPT_X509,
OPT_ASN1_KLUDGE, OPT_NO_ASN1_KLUDGE, OPT_MULTIVALUE_RDN,
OPT_DAYS, OPT_SET_SERIAL, OPT_EXTENSIONS, OPT_REQEXTS, OPT_MD
} OPTION_CHOICE;
@@ -167,7 +167,8 @@ OPTIONS req_options[] = {
"Output the request in a format that is wrong"},
{OPT_MORE_STR, 1, 1, "(Required by some CA's)"},
{"no-asn1-kludge", OPT_NO_ASN1_KLUDGE, '-'},
- {"subject", OPT_SUBJECT, 's', "Output the request's subject"},
+ {"subj", OPT_SUBJ, 's', "Set or modify request subject"},
+ {"subject", OPT_SUBJECT, '-', "Output the request's subject"},
{"multivalue-rdn", OPT_MULTIVALUE_RDN, '-',
"Enable support for multivalued RDNs"},
{"days", OPT_DAYS, 'p', "Number of days cert is valid for"},
@@ -351,6 +352,9 @@ int req_main(int argc, char **argv)
goto opthelp;
break;
case OPT_SUBJECT:
+ subject = 1;
+ break;
+ case OPT_SUBJ:
subj = opt_arg();
break;
case OPT_MULTIVALUE_RDN:
More information about the openssl-commits
mailing list