From 601a2be8cd53f08aab392624547ce737eda96eba Mon Sep 17 00:00:00 2001 From: djm <> Date: Sun, 3 Oct 2010 06:09:42 +0000 Subject: DES_LONG should be u_int on all platforms, it was spuriously u_long on i386. suggested by deraadt@ and kettenis@ --- src/lib/libssl/crypto/arch/i386/opensslconf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/libssl/crypto/arch/i386/opensslconf.h b/src/lib/libssl/crypto/arch/i386/opensslconf.h index a222ec1007..91993d7a3f 100644 --- a/src/lib/libssl/crypto/arch/i386/opensslconf.h +++ b/src/lib/libssl/crypto/arch/i386/opensslconf.h @@ -146,7 +146,7 @@ /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a * %20 speed up (longs are 8 bytes, int's are 4). */ #ifndef DES_LONG -#define DES_LONG unsigned long +#define DES_LONG unsigned int #endif #endif -- cgit v1.2.3-55-g6feb