aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-04-23 07:58:00 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-04-23 07:58:00 +0000
commit0a08619fa7ff51777b62719a6cceac9828b13556 (patch)
tree6f8016c7b6e8eb1cb90e79f3e4f114b901e9fd1f /pop3.c
parent7c921a8f61c0b6f8794459e52a0c3b0a00aa45a4 (diff)
downloadfetchmail-0a08619fa7ff51777b62719a6cceac9828b13556.tar.gz
fetchmail-0a08619fa7ff51777b62719a6cceac9828b13556.tar.bz2
fetchmail-0a08619fa7ff51777b62719a6cceac9828b13556.zip
More from HH's patch.
svn path=/trunk/; revision=3295
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pop3.c b/pop3.c
index 0ff1cd45..93c2516b 100644
--- a/pop3.c
+++ b/pop3.c
@@ -211,10 +211,10 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting)
if (strstr(buffer, "GSSAPI"))
has_gssapi = TRUE;
#endif /* defined(GSSAPI) */
-#if defined(KERBEROS_V4) || defined(KERBEROS_V5)
+#if defined(KERBEROS_V4)
if (strstr(buffer, "KERBEROS_V4"))
has_kerberos = TRUE;
-#endif /* defined(KERBEROS_V4) || defined(KERBEROS_V5) */
+#endif /* defined(KERBEROS_V4) */
#ifdef OPIE_ENABLE
if (strstr(buffer, "X-OTP"))
has_otp = TRUE;
@@ -227,7 +227,7 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting)
/*
* OK, we have an authentication type now.
*/
-#if defined(KERBEROS_V4) || defined(KERBEROS_V5)
+#if defined(KERBEROS_V4)
/*
* Servers doing KPOP have to go through a dummy login sequence
* rather than doing SASL.