pkgsrc/security/pgp2/patches/patch-ah
tron 2b496e4fe5 Always use "unsigned int" for a 32 bit unsigned integer which is correct
on all platforms supported by pkgsrc.

This should fix LP64 problems reported in PR pkg/19765 by John Heasley.
2006-09-28 16:21:46 +00:00

16 lines
334 B
Text

$NetBSD: patch-ah,v 1.1 2006/09/28 16:21:46 tron Exp $
--- md5.h.orig 1994-08-01 16:12:18.000000000 +0100
+++ md5.h 2006-09-28 17:16:02.000000000 +0100
@@ -1,11 +1,7 @@
#ifndef MD5_H
#define MD5_H
-#ifdef __alpha
typedef unsigned int uint32;
-#else
-typedef unsigned long uint32;
-#endif
struct MD5Context {
uint32 buf[4];