svn commit: samba r4197 - in branches/SAMBA_4_0/source/lib/crypto: .

tpot at samba.org tpot at samba.org
Tue Dec 14 06:09:05 GMT 2004


Author: tpot
Date: 2004-12-14 06:09:04 +0000 (Tue, 14 Dec 2004)
New Revision: 4197

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=4197

Log:
Remove silly extra const.

Modified:
   branches/SAMBA_4_0/source/lib/crypto/md5.c
   branches/SAMBA_4_0/source/lib/crypto/md5.h


Changeset:
Modified: branches/SAMBA_4_0/source/lib/crypto/md5.c
===================================================================
--- branches/SAMBA_4_0/source/lib/crypto/md5.c	2004-12-14 05:51:01 UTC (rev 4196)
+++ branches/SAMBA_4_0/source/lib/crypto/md5.c	2004-12-14 06:09:04 UTC (rev 4197)
@@ -58,7 +58,7 @@
  * 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;
 

Modified: branches/SAMBA_4_0/source/lib/crypto/md5.h
===================================================================
--- branches/SAMBA_4_0/source/lib/crypto/md5.h	2004-12-14 05:51:01 UTC (rev 4196)
+++ branches/SAMBA_4_0/source/lib/crypto/md5.h	2004-12-14 06:09:04 UTC (rev 4197)
@@ -12,7 +12,7 @@
 };
 
 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);
 



More information about the samba-cvs mailing list