From 60efedd4c0e2ec90ac9cfa300142210b4c7fa7ea Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 3 Oct 1998 08:29:06 +0000 Subject: - ignore *.p files - make msleep() non-static (This used to be commit 688a749484aa807075d2ce16d750c4f3494f3e55) --- source3/lib/.cvsignore | 1 + source3/lib/util.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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; -- cgit