X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/eb31b00e4098ffb93eaf574f70cdd108b6610080..4e66da02f19648ee1be862e67ba1d1fc5549fb7f:/md2.c diff --git a/md2.c b/md2.c index b93a1b2..d374d87 100644 --- a/md2.c +++ b/md2.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: md2.c,v 1.1 2001/02/21 20:03:22 mdw Exp $ + * $Id: md2.c,v 1.2 2004/04/02 01:03:49 mdw Exp $ * * The MD2 message digest function * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: md2.c,v $ + * Revision 1.2 2004/04/02 01:03:49 mdw + * Miscellaneous constification. + * * Revision 1.1 2001/02/21 20:03:22 mdw * Added support for MD2 hash function. * @@ -47,7 +50,7 @@ /*----- Tables ------------------------------------------------------------*/ -static octet s[256] = MD2_S; +static const octet s[256] = MD2_S; /*----- Main code ---------------------------------------------------------*/