From: mdw Date: Sun, 8 Oct 2000 12:12:23 +0000 (+0000) Subject: Improve @const@-correctness. X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/commitdiff_plain/5f271fe6547200969f2e420a1bd0092db507c88b Improve @const@-correctness. --- diff --git a/des-mktab.c b/des-mktab.c index 1a984d1..a4914b2 100644 --- a/des-mktab.c +++ b/des-mktab.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: des-mktab.c,v 1.3 2000/06/17 10:52:14 mdw Exp $ + * $Id: des-mktab.c,v 1.4 2000/10/08 12:12:23 mdw Exp $ * * Build combined S-P tables for DES * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: des-mktab.c,v $ + * Revision 1.4 2000/10/08 12:12:23 mdw + * Improve @const@-correctness. + * * Revision 1.3 2000/06/17 10:52:14 mdw * Change name for S-box header file. * @@ -54,7 +57,7 @@ /* --- S boxes --- */ -static char s[8][4][16] = { +static const char s[8][4][16] = { /* --- S1 --- */ @@ -136,7 +139,7 @@ static char p[32] = { * unique. */ -static int unique(char *t, int base, int sz, const char *name, ...) +static int unique(const char *t, int base, int sz, const char *name, ...) { char u[32]; char nbuf[128];