aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-29 19:51:48 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-29 19:51:48 +0000
commit9107f6f45fe2cb1ea1e73023b8f5ef417867fd7a (patch)
treebaa36d0895daa606215a70900525a038c8bbb3db /fetchmail.c
parent5d0ef5e37f24ae159d39b13358a297aab55b991e (diff)
downloadfetchmail-9107f6f45fe2cb1ea1e73023b8f5ef417867fd7a.tar.gz
fetchmail-9107f6f45fe2cb1ea1e73023b8f5ef417867fd7a.tar.bz2
fetchmail-9107f6f45fe2cb1ea1e73023b8f5ef417867fd7a.zip
Make fetchmail -q faster.
svn path=/trunk/; revision=426
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 905fa390..bf64ed0a 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -157,7 +157,7 @@ char **argv;
rcfile);
exit(0);
}
- else if (querylist == NULL) {
+ else if (!quitmode && querylist == NULL) {
(void) fputs("fetchmail: no mailservers have been specified.\n", stderr);
exit(PS_SYNTAX);
}
@@ -385,7 +385,7 @@ char **argv;
(poll_interval);
if (outlevel == O_VERBOSE)
- fprintf(stderr, "fetchmail: normal termination, status %d\n", popstatus);
+ fprintf(stderr,"fetchmail: normal termination, status %d\n",popstatus);
termhook(0);
exit(popstatus);