updated the 3.0 branch from the head branch - ready for alpha18
[kai/samba.git] / source3 / lib / md5.c
index 627725bb25274165ccb53abfa0309bb3e23046be..2121b17047988987afa5442e1441647a8111e61e 100644 (file)
@@ -22,6 +22,8 @@
 
 #include "md5.h"
 
+static void MD5Transform(uint32 buf[4], uint32 const in[16]);
+
 /*
  * Note: this code is harmless on little-endian machines.
  */
@@ -161,7 +163,7 @@ void MD5Final(unsigned char digest[16], struct MD5Context *ctx)
  * reflect the addition of 16 longwords of new data.  MD5Update blocks
  * the data and converts bytes into longwords for this routine.
  */
-void MD5Transform(uint32 buf[4], uint32 const in[16])
+static void MD5Transform(uint32 buf[4], uint32 const in[16])
 {
     register uint32 a, b, c, d;