From 55b09fe69aebe862777b9797c7334bbf2fc07fba Mon Sep 17 00:00:00 2001 From: FdaSilvaYY Date: Sat, 23 Jul 2016 15:39:49 +0200 Subject: [PATCH] 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) --- apps/speed.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.34.1