aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-11 17:06:47 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-11 17:06:47 +0000
commitfbcc5b4a0e29ac80375898e3c5ab6dd9a1c3080a (patch)
tree0b246969137adc6bcfe2a8220f06f3d3d826d520 /fetchmail.c
parent2e4ef5af99b7285a902c21dbde130874a0d34888 (diff)
downloadfetchmail-fbcc5b4a0e29ac80375898e3c5ab6dd9a1c3080a.tar.gz
fetchmail-fbcc5b4a0e29ac80375898e3c5ab6dd9a1c3080a.tar.bz2
fetchmail-fbcc5b4a0e29ac80375898e3c5ab6dd9a1c3080a.zip
Fix options handling.
svn path=/trunk/; revision=314
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 34009a33..2d37d35a 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -504,12 +504,12 @@ struct hostrec *queryctl;
if (queryctl->authenticate == A_KERBEROS)
printf(" Kerberos authentication enabled.\n");
- printf(" Fetched messages will%s be kept on the server (--keep %s).\n",
- queryctl->keep ? "" : " not",
- queryctl->keep ? "on" : "off");
printf(" %s messages will be retrieved (--all %s).\n",
queryctl->fetchall ? "All" : "Only new",
queryctl->fetchall ? "on" : "off");
+ printf(" Fetched messages will%s be kept on the server (--keep %s).\n",
+ queryctl->keep ? "" : " not",
+ queryctl->keep ? "on" : "off");
printf(" Old messages will%s be flushed before message retrieval (--flush %s).\n",
queryctl->flush ? "" : " not",
queryctl->flush ? "on" : "off");