diff options
-rw-r--r-- | fetchmail.c | 6 | ||||
-rw-r--r-- | options.c | 2 |
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"); @@ -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); |