diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2010-10-03 06:09:43 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2010-10-03 06:09:43 +0000 |
commit | f5fc29b21efc9ad68b656016f7217cd27ef7f062 (patch) | |
tree | 16379bbd952e3291c351835086786aac17610af3 | |
parent | 2384d5ad0e1e9e278a6de7f4037b54dea539f9ba (diff) |
DES_LONG should be u_int on all platforms, it was spuriously
u_long on i386. suggested by deraadt@ and kettenis@
-rw-r--r-- | lib/libssl/crypto/arch/i386/opensslconf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/crypto/arch/i386/opensslconf.h b/lib/libssl/crypto/arch/i386/opensslconf.h index a222ec10070..91993d7a3f3 100644 --- a/lib/libssl/crypto/arch/i386/opensslconf.h +++ b/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 |