summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-07-23 15:39:49 +0200
committerRich Salz <rsalz@openssl.org>2016-08-01 09:32:03 -0400
commit55b09fe69aebe862777b9797c7334bbf2fc07fba (patch)
tree1c2545bfdd5433f2e0d51a735f59d668bf7ca8ce /apps
parent70c4e15612f6dad9e7e82f74e8d3ebe7ef119f50 (diff)
Add missing help string
Fix an error message Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1342)
Diffstat (limited to 'apps')
-rw-r--r--apps/speed.c5
1 files 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;
}