aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-03-07 19:59:32 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-03-07 19:59:32 +0000
commit0856b2d7942377a48ef339c082e7d7ca796eb8bd (patch)
tree425ee55916c2c1019576ab5c92df12431892423b /pop3.c
parent958404d828fd3494a359ac206cd3e93645e69975 (diff)
downloadfetchmail-0856b2d7942377a48ef339c082e7d7ca796eb8bd.tar.gz
fetchmail-0856b2d7942377a48ef339c082e7d7ca796eb8bd.tar.bz2
fetchmail-0856b2d7942377a48ef339c082e7d7ca796eb8bd.zip
Enable GSSAPI.
svn path=/trunk/; revision=3215
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pop3.c b/pop3.c
index ea3000c1..f781105d 100644
--- a/pop3.c
+++ b/pop3.c
@@ -263,7 +263,7 @@ int pop3_getauth(int sock, struct query *ctl, char *greeting)
return(do_rfc1731(sock, "AUTH", ctl->server.truename));
#endif /* defined(KERBEROS_V4) || defined(KERBEROS_V5) */
#if defined(GSSAPI)
- if (ctl->server.authenticate==A_GSSAPI))
+ if (ctl->server.authenticate==A_GSSAPI)
return(do_gssauth(sock, "AUTH",
ctl->server.truename, ctl->remotename));
#endif /* defined(GSSAPI) */