X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/d3187d77683cc7c81be53c12386630debeccb20b..80be023065ced106a4078a36371c135a60d2bd6c:/md2.c diff --git a/md2.c b/md2.c index b93a1b2..08e033f 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.3 2004/04/08 01:36:15 mdw Exp $ * * The MD2 message digest function * @@ -27,14 +27,6 @@ * MA 02111-1307, USA. */ -/*----- Revision history --------------------------------------------------* - * - * $Log: md2.c,v $ - * Revision 1.1 2001/02/21 20:03:22 mdw - * Added support for MD2 hash function. - * - */ - /*----- Header files ------------------------------------------------------*/ #include @@ -47,7 +39,7 @@ /*----- Tables ------------------------------------------------------------*/ -static octet s[256] = MD2_S; +static const octet s[256] = MD2_S; /*----- Main code ---------------------------------------------------------*/