Improve error message

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
FdaSilvaYY 2016-08-04 00:23:39 +02:00 committed by Matt Caswell
parent 54463e4f33
commit cfd451d47f

View File

@ -1431,6 +1431,12 @@ int speed_main(int argc, char **argv)
break;
case OPT_MB:
multiblock = 1;
#ifdef OPENSSL_NO_MULTIBLOCK
BIO_printf(bio_err,
"%s: -mb specified but multi-block support is disabled\n",
prog);
goto end;
#endif
break;
}
}