summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/lib/.cvsignore1
-rw-r--r--source3/lib/util.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/.cvsignore b/source3/lib/.cvsignore
index e69de29bb2..f20330ba4d 100644
--- a/source3/lib/.cvsignore
+++ b/source3/lib/.cvsignore
@@ -0,0 +1 @@
+*.p
diff --git a/source3/lib/util.c b/source3/lib/util.c
index 37c7a5519e..35c97b1404 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -2395,7 +2395,7 @@ BOOL send_one_packet(char *buf,int len,struct in_addr ip,int port,int type)
/*******************************************************************
sleep for a specified number of milliseconds
********************************************************************/
-static void msleep(int t)
+void msleep(int t)
{
int tdiff=0;
struct timeval tval,t1,t2;