summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-07-03 06:48:52 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-07-03 06:48:52 +0000
commitdd118a176a5b31923dbb2f42fe8809c813b0b935 (patch)
treebd120926b30edded8f70e0bdacaf4a587a9788d8 /source3/lib
parent343c04e92f313dbb1de2198e66cd7a915ed3050b (diff)
downloadsamba-dd118a176a5b31923dbb2f42fe8809c813b0b935.tar.gz
samba-dd118a176a5b31923dbb2f42fe8809c813b0b935.tar.bz2
samba-dd118a176a5b31923dbb2f42fe8809c813b0b935.zip
Fix the forword prototype to be a static for this static function.
(This used to be commit bb1aa5e1d2e4f71dfaab0ade24ed15d1b5fdfc33)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/md5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/md5.c b/source3/lib/md5.c
index 0d8f8e74d9..2121b17047 100644
--- a/source3/lib/md5.c
+++ b/source3/lib/md5.c
@@ -22,7 +22,7 @@
#include "md5.h"
-void MD5Transform(uint32 buf[4], uint32 const in[16]);
+static void MD5Transform(uint32 buf[4], uint32 const in[16]);
/*
* Note: this code is harmless on little-endian machines.