aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'options.c')
-rw-r--r--options.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/options.c b/options.c
index 7883eed1..7aa58d21 100644
--- a/options.c
+++ b/options.c
@@ -256,7 +256,10 @@ struct query *ctl; /* option record to be initialized */
break;
case 'v':
case LA_VERBOSE:
- outlevel = O_VERBOSE;
+ if (outlevel == O_VERBOSE)
+ outlevel = O_DEBUG;
+ else
+ outlevel = O_VERBOSE;
break;
case 'd':
case LA_DAEMON: