r4197: Remove silly extra const.
authorTim Potter <tpot@samba.org>
Tue, 14 Dec 2004 06:09:04 +0000 (06:09 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:07:25 +0000 (13:07 -0500)
source/lib/crypto/md5.c
source/lib/crypto/md5.h

index 38ef3fdfbd745f3109274348367c57470a3f5087..f59b35a0b8dd25a00a1f0ca78c6bfb7540e14634 100644 (file)
@@ -58,7 +58,7 @@ void MD5Init(struct MD5Context *ctx)
  * Update context to reflect the concatenation of another buffer full
  * of bytes.
  */
-void MD5Update(struct MD5Context *ctx, const uint8_t const *buf, uint_t len)
+void MD5Update(struct MD5Context *ctx, const uint8_t *buf, uint_t len)
 {
     register uint32_t t;
 
index a622cf232a243414f19681f85dc08be6911b8e2f..51aa5e4ca555031352003c370eaf6a1b5bdce512 100644 (file)
@@ -12,7 +12,7 @@ struct MD5Context {
 };
 
 void MD5Init(struct MD5Context *context);
-void MD5Update(struct MD5Context *context, const uint8_t const *buf,
+void MD5Update(struct MD5Context *context, const uint8_t *buf,
               uint_t len);
 void MD5Final(uint8_t digest[16], struct MD5Context *context);