support -quiet with -msg or -trace

This commit is contained in:
Dr. Stephen Henson 2012-11-21 17:11:42 +00:00
parent 2588d4ca41
commit 1740c9fbfc
2 changed files with 6 additions and 2 deletions

View File

@ -1120,9 +1120,11 @@ bad:
if (bio_c_out == NULL)
{
if (c_quiet && !c_debug && !c_msg)
if (c_quiet && !c_debug)
{
bio_c_out=BIO_new(BIO_s_null());
if (c_msg && !bio_c_msg)
bio_c_msg=BIO_new_fp(stdout,BIO_NOCLOSE);
}
else
{

View File

@ -1612,9 +1612,11 @@ bad:
if (bio_s_out == NULL)
{
if (s_quiet && !s_debug && !s_msg)
if (s_quiet && !s_debug)
{
bio_s_out=BIO_new(BIO_s_null());
if (s_msg && !bio_s_msg)
bio_s_msg=BIO_new_fp(stdout,BIO_NOCLOSE);
}
else
{