summaryrefslogtreecommitdiffstats
path: root/crypto/des/ecb_enc.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2008-12-22 14:10:42 +0000
committerAndy Polyakov <appro@openssl.org>2008-12-22 14:10:42 +0000
commit9f03d0fc04805d22922be8a89a11a32054aa7e1d (patch)
tree1b60a7fcd17081844ed1d7d64412469354cf7897 /crypto/des/ecb_enc.c
parent2140659b00af2e6e392c859cfc392c68d0fe0a10 (diff)
Optimize #undef DES_UNROLL for size.
Diffstat (limited to 'crypto/des/ecb_enc.c')
-rw-r--r--crypto/des/ecb_enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/des/ecb_enc.c b/crypto/des/ecb_enc.c
index 0861988323..0684e769b3 100644
--- a/crypto/des/ecb_enc.c
+++ b/crypto/des/ecb_enc.c
@@ -91,7 +91,7 @@ const char *DES_options(void)
#ifdef DES_UNROLL
unroll="16";
#else
- unroll="4";
+ unroll="2";
#endif
if (sizeof(DES_LONG) != sizeof(long))
size="int";