From a2eea3bf22d24fec7406e7a09d47d9f1f3441c05 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Wed, 4 Jan 2006 16:03:20 +0000 Subject: Some verbose output disappeared in debug mode. Adding further -v options would alternate between verbose and debug mode. debug mode now comprises all verbose output, and adding more -v options does not switch back from debug to verbose mode. svn path=/branches/BRANCH_6-3/; revision=4597 --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'options.c') diff --git a/options.c b/options.c index bd607237..5e9599ce 100644 --- a/options.c +++ b/options.c @@ -254,7 +254,7 @@ struct query *ctl; /* option record to be initialized */ outlevel = O_SILENT; break; case 'v': - if (outlevel == O_VERBOSE) + if (outlevel >= O_VERBOSE) outlevel = O_DEBUG; else outlevel = O_VERBOSE; -- cgit v1.2.3