summaryrefslogtreecommitdiff
path: root/source3/lib/md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/md5.c')
-rw-r--r--source3/lib/md5.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/lib/md5.c b/source3/lib/md5.c
index 2121b17047..627725bb25 100644
--- a/source3/lib/md5.c
+++ b/source3/lib/md5.c
@@ -22,8 +22,6 @@
#include "md5.h"
-static void MD5Transform(uint32 buf[4], uint32 const in[16]);
-
/*
* Note: this code is harmless on little-endian machines.
*/
@@ -163,7 +161,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.
*/
-static void MD5Transform(uint32 buf[4], uint32 const in[16])
+void MD5Transform(uint32 buf[4], uint32 const in[16])
{
register uint32 a, b, c, d;