aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fetchmail.c6
-rw-r--r--options.c2
2 files changed, 4 insertions, 4 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");
diff --git a/options.c b/options.c
index bab65654..d9ca5845 100644
--- a/options.c
+++ b/options.c
@@ -168,7 +168,7 @@ struct hostrec *queryctl;
{
queryctl->protocol = P_POP3;
queryctl->port = KPOP_PORT;
- queryctl->authenticate == A_KERBEROS;
+ queryctl->authenticate = A_KERBEROS;
}
else {
fprintf(stderr,"Invalid protocol `%s' specified.\n", optarg);