summaryrefslogtreecommitdiff
path: root/mail/mutt
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2000-06-22 13:50:33 +0000
committertron <tron@pkgsrc.org>2000-06-22 13:50:33 +0000
commit65058db34ca158764d45c0cf53a84507c1430731 (patch)
tree7da491362d02c61cfaacde3331d888a35ff1067a /mail/mutt
parent36d1df5ea359f46616d1ea2df10b16079ded6c75 (diff)
downloadpkgsrc-65058db34ca158764d45c0cf53a84507c1430731.tar.gz
Fix LP64 bug in MD5 code which broke IMAP CRAM-MD5 authentification.
Diffstat (limited to 'mail/mutt')
-rw-r--r--mail/mutt/files/patch-sum3
-rw-r--r--mail/mutt/patches/patch-ah23
2 files changed, 25 insertions, 1 deletions
diff --git a/mail/mutt/files/patch-sum b/mail/mutt/files/patch-sum
index de3224adb6e..e73f69ca037 100644
--- a/mail/mutt/files/patch-sum
+++ b/mail/mutt/files/patch-sum
@@ -1,4 +1,4 @@
-$NetBSD: patch-sum,v 1.7 2000/06/21 07:00:20 tron Exp $
+$NetBSD: patch-sum,v 1.8 2000/06/22 13:50:33 tron Exp $
MD5 (patch-aa) = 7d2e9e14bd302e841ed1f2b47f0dfa58
MD5 (patch-ab) = e7f615cb63a40130edefe8a51aca3593
@@ -7,3 +7,4 @@ MD5 (patch-ad) = e457f59e7d3c215a54d6d0256fe10439
MD5 (patch-ae) = 9f7427c1b9477c19e11a748c889174a6
MD5 (patch-af) = b530bbcd85e85ae7233be82d698a374f
MD5 (patch-ag) = 23f823650ebf0a0b96892693b729aa62
+MD5 (patch-ah) = 9626fd08270eba43d1b2cca49b94ddc6
diff --git a/mail/mutt/patches/patch-ah b/mail/mutt/patches/patch-ah
new file mode 100644
index 00000000000..d540b409913
--- /dev/null
+++ b/mail/mutt/patches/patch-ah
@@ -0,0 +1,23 @@
+$NetBSD: patch-ah,v 1.1 2000/06/22 13:50:34 tron Exp $
+
+--- imap/md5.h.orig Fri Aug 20 10:24:06 1999
++++ imap/md5.h Thu Jun 22 15:13:06 2000
+@@ -26,14 +26,16 @@
+ #ifndef MD5_H
+ #define MD5_H 1
+
++#include <sys/types.h>
++
+ /* POINTER defines a generic pointer type */
+ typedef unsigned char *POINTER;
+
+ /* UINT2 defines a two byte word */
+-typedef unsigned short int UINT2;
++typedef u_int16_t UINT2;
+
+ /* UINT4 defines a four byte word */
+-typedef unsigned long int UINT4;
++typedef u_int32_t UINT4;
+
+ /* MD5 context. */
+ typedef struct {