Improve @const@-correctness.
authormdw <mdw>
Sun, 8 Oct 2000 12:12:23 +0000 (12:12 +0000)
committermdw <mdw>
Sun, 8 Oct 2000 12:12:23 +0000 (12:12 +0000)
des-mktab.c

index 1a984d1..a4914b2 100644 (file)
@@ -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];