From: Ulf Möller Date: Fri, 10 Mar 2000 17:43:05 +0000 (+0000) Subject: Use L for all constants. X-Git-Tag: OpenSSL_0_9_5a-beta1~68 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=9e03333fd57e303ee6a4ab15fd131a4d51360c0a;hp=9f06706bf78991b760903a640286156ed1091ddb;ds=inline Use L for all constants. --- diff --git a/crypto/des/set_key.c b/crypto/des/set_key.c index bbdc71ba6b..213b59f783 100644 --- a/crypto/des/set_key.c +++ b/crypto/des/set_key.c @@ -223,9 +223,9 @@ void des_set_key_unchecked(const_des_cblock *key, des_key_schedule schedule) /* could be a few less shifts but I am to lazy at this * point in time to investigate */ s= des_skb[0][ (c )&0x3f ]| - des_skb[1][((c>> 6)&0x03)|((c>> 7L)&0x3c)]| - des_skb[2][((c>>13)&0x0f)|((c>>14L)&0x30)]| - des_skb[3][((c>>20)&0x01)|((c>>21L)&0x06) | + des_skb[1][((c>> 6L)&0x03)|((c>> 7L)&0x3c)]| + des_skb[2][((c>>13L)&0x0f)|((c>>14L)&0x30)]| + des_skb[3][((c>>20L)&0x01)|((c>>21L)&0x06) | ((c>>22L)&0x38)]; t= des_skb[4][ (d )&0x3f ]| des_skb[5][((d>> 7L)&0x03)|((d>> 8L)&0x3c)]|