diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-12-01 04:59:16 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-12-01 04:59:16 +0000 |
commit | 5c8eeeb93452007e138f3461b4da70b38f35bbc9 (patch) | |
tree | 4fb6e68a4224e9d9cee0a5188ed992fabd0a1f3c /fetchmail.c | |
parent | 7030b00d6141d367ad4fd357f21e89435430fd3e (diff) | |
download | fetchmail-5c8eeeb93452007e138f3461b4da70b38f35bbc9.tar.gz fetchmail-5c8eeeb93452007e138f3461b4da70b38f35bbc9.tar.bz2 fetchmail-5c8eeeb93452007e138f3461b4da70b38f35bbc9.zip |
Correction to awakening logic.
svn path=/trunk/; revision=1547
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 9daeacac..d737e07e 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -142,7 +142,7 @@ int main (int argc, char **argv) } /* avoid parsing the config file if all we're doing is killing a daemon */ - if (!quitmode && argc == 2) + if (!(quitmode && argc == 2)) implicitmode = load_params(argc, argv, optind); /* set up to do lock protocol */ |