From cbef819a1a9286e0cffbb3783a1467eab85824bd Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Mon, 22 Dec 2014 20:32:58 +0000 Subject: [PATCH] progs/rspit.c: Make the internal tables be const. --- progs/rspit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/progs/rspit.c b/progs/rspit.c index b75c6f87..7ca1cce8 100644 --- a/progs/rspit.c +++ b/progs/rspit.c @@ -174,7 +174,7 @@ enum { CIPHERS CIPHER__bogus }; enum { HASHES HASH__bogus }; #undef E -static struct { +static const struct { const octet *keysz; size_t blksz; grand *(*ofb)(const void */*k*/, size_t /*sz*/); @@ -186,7 +186,7 @@ static struct { #undef E }; -static struct { +static const struct { const gchash *h; const octet *keysz; grand *(*mgf)(const void */*k*/, size_t /*sz*/); -- 2.11.0