From 4dbad04b0830b1e9b378f7e818b019b4d873dae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Wed, 23 Feb 2005 18:03:36 +0000 Subject: [PATCH] key argument to RC4_set_key is not const, remove const from variable git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14590 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/des/rctest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/des/rctest.c b/lib/des/rctest.c index 52baa0944..5b301b9a8 100644 --- a/lib/des/rctest.c +++ b/lib/des/rctest.c @@ -96,7 +96,7 @@ static unsigned char plain3[] = 0x20, 0x2d, 0x20, 0x45, 0x69, 0x6e, 0x6f, 0x20, 0x4c, 0x65, 0x69, 0x6e, 0x6f }; -const char key3[16] = +static unsigned char key3[16] = { 0x29, 0x04, 0x19, 0x72, 0xfb, 0x42, 0xba, 0x5f, 0xc7, 0x12, 0x77, 0x12, 0xf1, 0x38, 0x29, 0xc9 };