diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-05-23 21:49:50 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-05-23 21:49:50 +0000 |
commit | 44cacf5a0e6ebfed70606e12e002a4f2bce0ba9e (patch) | |
tree | d6911193eeaa76ab42df38939743f8fcf7968c63 /fetchmail.c | |
parent | bd4ffcc92d6bab5737222ca0091979ac2f31cfb0 (diff) | |
download | fetchmail-44cacf5a0e6ebfed70606e12e002a4f2bce0ba9e.tar.gz fetchmail-44cacf5a0e6ebfed70606e12e002a4f2bce0ba9e.tar.bz2 fetchmail-44cacf5a0e6ebfed70606e12e002a4f2bce0ba9e.zip |
We can utter a Python initializer now.
svn path=/trunk/; revision=1812
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 368a02b2..ddfdb309 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -748,7 +748,7 @@ static int load_params(int argc, char **argv, int optind) /* merge in wired defaults, do sanity checks and prepare internal fields */ for (ctl = querylist; ctl; ctl = ctl->next) { - if (ctl->active && !(implicitmode && ctl->server.skip)) + if (configdump || (ctl->active && !(implicitmode && ctl->server.skip))) { /* merge in defaults */ optmerge(ctl, &def_opts); |