From 278f94f9dcb38ce1b0848c46a5365af463b74c5b Mon Sep 17 00:00:00 2001 From: Thomas Osterried Date: Sun, 16 Sep 2007 09:42:04 +0000 Subject: - bugfix: did false computations on 64bit plattforms. --- ax25/md5.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ax25') diff --git a/ax25/md5.h b/ax25/md5.h index 2bf3867..fc45c8a 100644 --- a/ax25/md5.h +++ b/ax25/md5.h @@ -42,7 +42,11 @@ #define MD5_H /* typedef a 32-bit type */ +#ifdef _LP64 +typedef unsigned int UINT4; +#else typedef unsigned long int UINT4; +#endif /* Data structure for MD5 (Message-Digest) computation */ typedef struct { -- cgit v1.2.3