]> git.pld-linux.org Git - packages/fetchmail.git/blob - fetchmail-from64tobits.patch
- release 2.
[packages/fetchmail.git] / fetchmail-from64tobits.patch
1 diff -ur fetchmail-5.9.4/imap.c fetchmail.new/imap.c
2 --- fetchmail-5.9.4/imap.c      Tue Oct  2 09:55:58 2001
3 +++ fetchmail.new/imap.c        Wed Oct 10 14:28:06 2001
4 @@ -181,7 +181,7 @@
5      if ((gen_recv(sock, msgbuf, sizeof msgbuf)))
6         return result;
7    
8 -    len = from64tobits ((unsigned char*)&challenge, msgbuf);
9 +    len = from64tobits ((unsigned char*)&challenge, msgbuf, sizeof(challenge));
10      
11      if (outlevel >= O_DEBUG)
12         dumpSmbNtlmAuthChallenge(stdout, &challenge);
13 diff -ur fetchmail-5.9.4/kerberos.c fetchmail.new/kerberos.c
14 --- fetchmail-5.9.4/kerberos.c  Wed Oct  3 11:33:07 2001
15 +++ fetchmail.new/kerberos.c    Wed Oct 10 14:19:47 2001
16 @@ -208,7 +208,7 @@
17       * process is complete.
18       */
19  
20 -    len = from64tobits(buf2, buf1, sizeof(buf2x));
21 +    len = from64tobits(buf2, buf1, sizeof(buf2));
22      if (len < 0) {
23         report(stderr, GT_("could not decode BASE64 ready response\n"));
24         return PS_AUTHFAIL;
This page took 0.271148 seconds and 3 git commands to generate.