aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2002-06-04 13:58:21 +0000
committerEric S. Raymond <esr@thyrsus.com>2002-06-04 13:58:21 +0000
commit22443c2f05880838db8d7091701f8f20a83cc90e (patch)
treeff4f692e668d03bc44e0e862df86857ae70a024a /imap.c
parente690041931ba761b5e9479a46bd9285441c57caf (diff)
downloadfetchmail-22443c2f05880838db8d7091701f8f20a83cc90e.tar.gz
fetchmail-22443c2f05880838db8d7091701f8f20a83cc90e.tar.bz2
fetchmail-22443c2f05880838db8d7091701f8f20a83cc90e.zip
Fix Kerberos bugs.
svn path=/trunk/; revision=3628
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/imap.c b/imap.c
index c9792072..df8cd336 100644
--- a/imap.c
+++ b/imap.c
@@ -200,7 +200,7 @@ static int do_imap_ntlm(int sock, struct query *ctl)
if ((gen_recv(sock, msgbuf, sizeof msgbuf)))
return result;
- len = from64tobits ((unsigned char*)&challenge, msgbuf, sizeof(msgbuf));
+ len = from64tobits ((char*)&challenge, msgbuf, sizeof(challenge));
if (outlevel >= O_DEBUG)
dumpSmbNtlmAuthChallenge(stdout, &challenge);