diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2002-06-04 13:58:21 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2002-06-04 13:58:21 +0000 |
commit | 22443c2f05880838db8d7091701f8f20a83cc90e (patch) | |
tree | ff4f692e668d03bc44e0e862df86857ae70a024a /imap.c | |
parent | e690041931ba761b5e9479a46bd9285441c57caf (diff) | |
download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |