do not use 'long' to store 4 bytes, as 64bit architectures have 64bit longs.
authorDaniel Stenberg <daniel@haxx.se>
Sun, 7 Sep 2003 15:00:10 +0000 (15:00 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 7 Sep 2003 15:00:10 +0000 (15:00 +0000)
lib/md5.c

index d7da941..99d9e05 100644 (file)
--- a/lib/md5.c
+++ b/lib/md5.c
@@ -53,7 +53,7 @@ documentation and/or software.
 #include <string.h>
 
 /* UINT4 defines a four byte word */
-typedef unsigned long int UINT4;
+typedef unsigned int UINT4;
 
 /* MD5 context. */
 struct md5_ctx {