summaryrefslogtreecommitdiffstats
path: root/crypto/des/set_key.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2007-10-13 15:51:32 +0000
committerAndy Polyakov <appro@openssl.org>2007-10-13 15:51:32 +0000
commitebc06fba67a84f4fb397863f6e5eb4212c25d4e5 (patch)
tree8688a563283d23f3cf82d718366ae4c1d5d17c8d /crypto/des/set_key.c
parente979c039f937f746a06948aa3749c200c5a5cadd (diff)
Bunch of constifications.
Diffstat (limited to 'crypto/des/set_key.c')
-rw-r--r--crypto/des/set_key.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/des/set_key.c b/crypto/des/set_key.c
index ccfad81c2e..3004cc3ab3 100644
--- a/crypto/des/set_key.c
+++ b/crypto/des/set_key.c
@@ -336,7 +336,7 @@ int DES_set_key_checked(const_DES_cblock *key, DES_key_schedule *schedule)
void DES_set_key_unchecked(const_DES_cblock *key, DES_key_schedule *schedule)
{
- static int shifts2[16]={0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0};
+ static const int shifts2[16]={0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0};
register DES_LONG c,d,t,s,t2;
register const unsigned char *in;
register DES_LONG *k;