X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=pppd%2Fmd5.h;h=57908dd44ccac06be22bd0924008016aa020b665;hb=2dae8c323976d0655400d8d1726ff575b8f74338;hp=535b18d4b730016ae7252abca70201e3f35c2e2e;hpb=0b63a24d54ba4708c88e31bdd74b0145956c1478;p=ppp.git diff --git a/pppd/md5.h b/pppd/md5.h index 535b18d..57908dd 100644 --- a/pppd/md5.h +++ b/pppd/md5.h @@ -40,7 +40,14 @@ #ifndef __MD5_INCLUDE__ /* typedef a 32-bit type */ -typedef unsigned long int UINT4; +#ifdef _LP64 +typedef unsigned int UINT4; +typedef int INT4; +#else +typedef unsigned long UINT4; +typedef long INT4; +#endif +#define _UINT4_T /* Data structure for MD5 (Message-Digest) computation */ typedef struct {