diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-04-23 07:58:00 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-04-23 07:58:00 +0000 |
commit | 0a08619fa7ff51777b62719a6cceac9828b13556 (patch) | |
tree | 6f8016c7b6e8eb1cb90e79f3e4f114b901e9fd1f /pop3.c | |
parent | 7c921a8f61c0b6f8794459e52a0c3b0a00aa45a4 (diff) | |
download | fetchmail-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. |