From fb75eee38519bae0ce3301b6f048a641efc5439e Mon Sep 17 00:00:00 2001 From: olszomal Date: Wed, 18 Aug 2021 12:06:12 +0200 Subject: [PATCH] Put the pkcs11cert option in the usage syntax --- osslsigncode.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/osslsigncode.c b/osslsigncode.c index 5ef63a0..b2c8166 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -1127,7 +1127,8 @@ static void usage(const char *argv0, const char *cmd) } if (on_list(cmd, cmds_sign)) { printf("%1s[ sign ] ( -certs | -spc -key | -pkcs12 |\n", ""); - printf("%12s [ -pkcs11engine ] -pkcs11module -certs -key )\n", ""); + printf("%12s [ -pkcs11engine ] -pkcs11module -pkcs11cert |\n", ""); + printf("%12s -certs -key )\n", ""); printf("%12s[ -pass ", ""); #ifdef PROVIDE_ASKPASS printf("%1s [ -askpass ]", ""); @@ -5116,7 +5117,7 @@ static int read_crypto_params(GLOBAL_OPTIONS *options, CRYPTO_PARAMS *cparams) goto out; /* FAILED */ printf("Engine \"%s\" set.\n", ENGINE_get_id(engine)); - /* Load the private key and the signer certificate from the security token*/ + /* Load the private key and the signer certificate from the security token */ if (!read_token(options, engine, cparams)) goto out; /* FAILED */