fix error messages

This commit is contained in:
Dr. Stephen Henson 2012-11-17 15:22:50 +00:00
parent 5d2e07f182
commit 9fc81acae6

View File

@ -1561,14 +1561,15 @@ int args_ssl(char ***pargs, int *pargc, SSL_CONF_CTX *cctx,
/* see if missing argument error */ /* see if missing argument error */
if (rv == -3) if (rv == -3)
{ {
BIO_printf(err, "-%s needs an argument\n", arg); BIO_printf(err, "%s needs an argument\n", arg);
*badarg = 1; *badarg = 1;
goto end; goto end;
} }
/* Check for some other error */ /* Check for some other error */
if (rv < 0) if (rv < 0)
{ {
BIO_printf(err, "-%s %s: failed.\n", arg, argn); BIO_printf(err, "Error with command: \"%s %s\"\n",
arg, argn ? argn : "");
*badarg = 1; *badarg = 1;
goto end; goto end;
} }