]> git.pld-linux.org Git - packages/mutt.git/blob - mutt-md5.patch
1.3.17i
[packages/mutt.git] / mutt-md5.patch
1 --- mutt-1.2/imap/md5.h.how-many-times-do-i-have-to-fix-friggin-md5-code        Thu Jun 22 08:20:24 2000
2 +++ mutt-1.2/imap/md5.h Thu Jun 22 08:20:56 2000
3 @@ -26,14 +26,16 @@
4  #ifndef MD5_H
5  #define MD5_H 1
6  
7 +#include <sys/types.h>
8 +
9  /* POINTER defines a generic pointer type */
10  typedef unsigned char *POINTER;
11  
12  /* UINT2 defines a two byte word */
13 -typedef unsigned short int UINT2;
14 +typedef u_int16_t UINT2;
15  
16  /* UINT4 defines a four byte word */
17 -typedef unsigned long int UINT4;
18 +typedef u_int32_t UINT4;
19  
20  /* MD5 context. */
21  typedef struct {
This page took 0.029657 seconds and 3 git commands to generate.