aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-10-04 07:37:53 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-10-04 07:37:53 +0000
commit8a8b194fae862aa28acc0fd38962423a98e44ef0 (patch)
treeaf026cc10d9e3eb47660a4f265a69a19ff951f7b
parentf92f2a44d1a9aef4f65425742ac444650e98bbe4 (diff)
downloadfetchmail-8a8b194fae862aa28acc0fd38962423a98e44ef0.tar.gz
fetchmail-8a8b194fae862aa28acc0fd38962423a98e44ef0.tar.bz2
fetchmail-8a8b194fae862aa28acc0fd38962423a98e44ef0.zip
Simplify life.
svn path=/trunk/; revision=1476
-rw-r--r--imap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/imap.c b/imap.c
index 7224ba13..bd8af5fa 100644
--- a/imap.c
+++ b/imap.c
@@ -358,7 +358,7 @@ int imap_getauth(int sock, struct query *ctl, char *greeting)
/* eat the tail of the CAPABILITY response (if any) */
if ((peek_capable = (imap_version >= IMAP4)))
- if ((ok = imap_ok(sock, (char *)NULL)))
+ if ((ok = gen_recv(sock, capabilities, sizeof(capabilities))))
return(ok);
#ifdef KERBEROS_V4