summaryrefslogtreecommitdiffstats
path: root/crypto/md2
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2007-08-31 10:12:35 +0000
committerAndy Polyakov <appro@openssl.org>2007-08-31 10:12:35 +0000
commit4ece7eb6f4d396008d8b4ee6beb6dca409d84882 (patch)
tree89d484f29214f394758e75ea825da26324204601 /crypto/md2
parent0bb01b7df099ad4d45262138b7958ea652c42401 (diff)
Constify seed and md2.
Diffstat (limited to 'crypto/md2')
-rw-r--r--crypto/md2/md2_dgst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/md2/md2_dgst.c b/crypto/md2/md2_dgst.c
index 6f68b25c6a..c57b3da288 100644
--- a/crypto/md2/md2_dgst.c
+++ b/crypto/md2/md2_dgst.c
@@ -73,7 +73,7 @@ const char MD2_version[]="MD2" OPENSSL_VERSION_PTEXT;
static void md2_block(MD2_CTX *c, const unsigned char *d);
/* The magic S table - I have converted it to hex since it is
* basically just a random byte string. */
-static MD2_INT S[256]={
+static const MD2_INT S[256]={
0x29, 0x2E, 0x43, 0xC9, 0xA2, 0xD8, 0x7C, 0x01,
0x3D, 0x36, 0x54, 0xA1, 0xEC, 0xF0, 0x06, 0x13,
0x62, 0xA7, 0x05, 0xF3, 0xC0, 0xC7, 0x73, 0x8C,