summaryrefslogtreecommitdiff
path: root/mail/mutt/patches/patch-ah
diff options
context:
space:
mode:
Diffstat (limited to 'mail/mutt/patches/patch-ah')
-rw-r--r--mail/mutt/patches/patch-ah14
1 files changed, 11 insertions, 3 deletions
diff --git a/mail/mutt/patches/patch-ah b/mail/mutt/patches/patch-ah
index d540b409913..0041cdfb91f 100644
--- a/mail/mutt/patches/patch-ah
+++ b/mail/mutt/patches/patch-ah
@@ -1,8 +1,8 @@
-$NetBSD: patch-ah,v 1.1 2000/06/22 13:50:34 tron Exp $
+$NetBSD: patch-ah,v 1.2 2001/01/10 17:45:32 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 @@
++++ imap/md5.h Wed Jan 10 18:30:43 2001
+@@ -26,14 +26,24 @@
#ifndef MD5_H
#define MD5_H 1
@@ -13,11 +13,19 @@ $NetBSD: patch-ah,v 1.1 2000/06/22 13:50:34 tron Exp $
/* UINT2 defines a two byte word */
-typedef unsigned short int UINT2;
++#ifdef __sun__
++typedef uint16_t UINT2;
++#else
+typedef u_int16_t UINT2;
++#endif
/* UINT4 defines a four byte word */
-typedef unsigned long int UINT4;
++#ifdef __sun__
++typedef uint32_t UINT4;
++#else
+typedef u_int32_t UINT4;
++#endif
/* MD5 context. */
typedef struct {