aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1998-10-22 14:25:08 +0000
committerEric S. Raymond <esr@thyrsus.com>1998-10-22 14:25:08 +0000
commit8f32f5842c6020a093ff65fed3372d0935b4a9e4 (patch)
tree07c4a928195f1f68f71a9366e8a869b35d6517ab /fetchmail.c
parent21bfb443b78e3520fc650bebe356e2ebd56f03eb (diff)
downloadfetchmail-8f32f5842c6020a093ff65fed3372d0935b4a9e4.tar.gz
fetchmail-8f32f5842c6020a093ff65fed3372d0935b4a9e4.tar.bz2
fetchmail-8f32f5842c6020a093ff65fed3372d0935b4a9e4.zip
Prevent
auth kerberos_v4, proto KPOP, from fooing up. svn path=/trunk/; revision=2133
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 4be298f7..e76aae5d 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -1244,7 +1244,8 @@ void dump_params (struct runctl *runp, struct query *querylist, flag implicit)
#endif /* INET6 */
&& (ctl->server.preauthenticate == A_KERBEROS_V4 ||
ctl->server.preauthenticate == A_KERBEROS_V5))
- printf(" Protocol is KPOP");
+ printf(" Protocol is KPOP with Kerberos %s authentication",
+ ctl->server.preauthenticate == A_KERBEROS_V5 ? "V" : "IV");
else
printf(" Protocol is %s", showproto(ctl->server.protocol));
#if INET6