1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

do not use 'long' to store 4 bytes, as 64bit architectures have 64bit longs.

This commit is contained in:
Daniel Stenberg 2003-09-07 15:00:10 +00:00
parent 0ef3e6fe8a
commit e8c762981a

View File

@ -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 {