diff options
author | Pauli <pauli@openssl.org> | 2022-08-24 03:40:13 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2022-08-26 01:03:29 +0200 |
commit | 3c1f8fb13e064ad7f42e9b65c601c68e1aa79f7d (patch) | |
tree | 6aabe7d743715443a69cd74d1fd8f05896623075 /apps/rsa.c | |
parent | Drop the optimisation level for ppc64le cross-compile (diff) | |
download | openssl-3c1f8fb13e064ad7f42e9b65c601c68e1aa79f7d.tar.xz openssl-3c1f8fb13e064ad7f42e9b65c601c68e1aa79f7d.zip |
Add missing ')' to command help
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19049)
Diffstat (limited to 'apps/rsa.c')
-rw-r--r-- | apps/rsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/rsa.c b/apps/rsa.c index 9df07aba5b..77bab992db 100644 --- a/apps/rsa.c +++ b/apps/rsa.c @@ -61,7 +61,7 @@ const OPTIONS rsa_options[] = { OPT_SECTION("Input"), {"in", OPT_IN, 's', "Input file"}, - {"inform", OPT_INFORM, 'f', "Input format (DER/PEM/P12/ENGINE"}, + {"inform", OPT_INFORM, 'f', "Input format (DER/PEM/P12/ENGINE)"}, {"pubin", OPT_PUBIN, '-', "Expect a public key in input file"}, {"RSAPublicKey_in", OPT_RSAPUBKEY_IN, '-', "Input is an RSAPublicKey"}, {"passin", OPT_PASSIN, 's', "Input file pass phrase source"}, |