summaryrefslogtreecommitdiffstats
path: root/crypto/bf/bf_skey.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-02-08 14:19:14 +0000
committerRichard Levitte <levitte@openssl.org>2000-02-08 14:19:14 +0000
commitcf0694015e8fcb6cd09f191299b6ad9d8793760e (patch)
tree8248f5e06d1b1f5da5c9fe4e65dd1a012503a7c0 /crypto/bf/bf_skey.c
parent0cd4498b8f32bb0cb60724c42aa1014f724b2f2c (diff)
Constify
Diffstat (limited to 'crypto/bf/bf_skey.c')
-rw-r--r--crypto/bf/bf_skey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bf/bf_skey.c b/crypto/bf/bf_skey.c
index eefa8e6f51..4fb869b129 100644
--- a/crypto/bf/bf_skey.c
+++ b/crypto/bf/bf_skey.c
@@ -62,7 +62,7 @@
#include "bf_locl.h"
#include "bf_pi.h"
-void BF_set_key(BF_KEY *key, int len, unsigned char *data)
+void BF_set_key(BF_KEY *key, int len, const unsigned char *data)
{
int i;
BF_LONG *p,ri,in[2];