Author: jorton
Date: Thu Nov 15 02:49:47 2007
New Revision: 595265
URL: http://svn.apache.org/viewvc?rev=595265&view=rev
Log:
* crypto/apr_md5.c: Mark PADDING array as const.
Modified:
apr/apr-util/trunk/crypto/apr_md5.c
Modified: apr/apr-util/trunk/crypto/apr_md5.c
URL: http://svn.apache.org/viewvc/apr/apr-util/trunk/crypto/apr_md5.c?rev=595265&r1=595264&r2=595265&view=diff
==============================================================================
--- apr/apr-util/trunk/crypto/apr_md5.c (original)
+++ apr/apr-util/trunk/crypto/apr_md5.c Thu Nov 15 02:49:47 2007
@@ -102,7 +102,7 @@
static void Decode(apr_uint32_t *output, const unsigned char *input,
unsigned int len);
-static unsigned char PADDING[64] =
+static const unsigned char PADDING[64] =
{
0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|