From: FdaSilvaYY Date: Sat, 23 Jul 2016 13:39:49 +0000 (+0200) Subject: Add missing help string X-Git-Tag: OpenSSL_1_1_0-pre6~29 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=55b09fe69aebe862777b9797c7334bbf2fc07fba;hp=70c4e15612f6dad9e7e82f74e8d3ebe7ef119f50;ds=inline Add missing help string Fix an error message Reviewed-by: Richard Levitte Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1342) --- diff --git a/apps/speed.c b/apps/speed.c index 9d66f1858f..5b3db90cd6 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -371,7 +371,8 @@ OPTIONS speed_options[] = { {"decrypt", OPT_DECRYPT, '-', "Time decryption instead of encryption (only EVP)"}, {"mr", OPT_MR, '-', "Produce machine readable output"}, - {"mb", OPT_MB, '-'}, + {"mb", OPT_MB, '-', + "Enable (tls1.1) multi-block mode on evp_cipher requested with -evp"}, {"misalign", OPT_MISALIGN, 'n', "Amount to mis-align buffers"}, {"elapsed", OPT_ELAPSED, '-', "Measure time in real time instead of CPU user time"}, @@ -1379,7 +1380,7 @@ int speed_main(int argc, char **argv) evp_md = EVP_get_digestbyname(opt_arg()); if (evp_cipher == NULL && evp_md == NULL) { BIO_printf(bio_err, - "%s: %s an unknown cipher or digest\n", + "%s: %s is an unknown cipher or digest\n", prog, opt_arg()); goto end; }