aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-10-17 15:10:42 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-10-17 15:10:42 +0000
commit25844176b66a992b42041fd07bf14096f3d2ad02 (patch)
tree9cfe4ceaa0ec54da911b2eee4b90bf98ee142c09 /options.c
parentb7356877e3484f1bdb40c60dae17b85a365eb434 (diff)
downloadfetchmail-25844176b66a992b42041fd07bf14096f3d2ad02.tar.gz
fetchmail-25844176b66a992b42041fd07bf14096f3d2ad02.tar.bz2
fetchmail-25844176b66a992b42041fd07bf14096f3d2ad02.zip
Introduced O_DEBUG.
svn path=/trunk/; revision=2102
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: