diff options
author | djm <> | 2010-10-03 06:09:42 +0000 |
---|---|---|
committer | djm <> | 2010-10-03 06:09:42 +0000 |
commit | 601a2be8cd53f08aab392624547ce737eda96eba (patch) | |
tree | 97d2783e0abef7fef1a1e01a58952def030b0fc0 /src | |
parent | 603c02c9de529cfc99f181e6d0358546e6614ea6 (diff) | |
download | openbsd-601a2be8cd53f08aab392624547ce737eda96eba.tar.gz openbsd-601a2be8cd53f08aab392624547ce737eda96eba.tar.bz2 openbsd-601a2be8cd53f08aab392624547ce737eda96eba.zip |
DES_LONG should be u_int on all platforms, it was spuriously
u_long on i386. suggested by deraadt@ and kettenis@
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/crypto/arch/i386/opensslconf.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ | |||
146 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | 146 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a |
147 | * %20 speed up (longs are 8 bytes, int's are 4). */ | 147 | * %20 speed up (longs are 8 bytes, int's are 4). */ |
148 | #ifndef DES_LONG | 148 | #ifndef DES_LONG |
149 | #define DES_LONG unsigned long | 149 | #define DES_LONG unsigned int |
150 | #endif | 150 | #endif |
151 | #endif | 151 | #endif |
152 | 152 | ||