summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-03 08:29:06 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-03 08:29:06 +0000
commit688a749484aa807075d2ce16d750c4f3494f3e55 (patch)
treedd897819141c807372fbb67f6514d7c3f3732928 /source
parenta42155f77a0156aa10adc9fd0070f3edab647382 (diff)
downloadsamba-688a749484aa807075d2ce16d750c4f3494f3e55.tar.gz
samba-688a749484aa807075d2ce16d750c4f3494f3e55.tar.xz
samba-688a749484aa807075d2ce16d750c4f3494f3e55.zip
- ignore *.p files
- make msleep() non-static
Diffstat (limited to 'source')
-rw-r--r--source/lib/.cvsignore1
-rw-r--r--source/lib/util.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/source/lib/.cvsignore b/source/lib/.cvsignore
index e69de29bb2d..f20330ba4d3 100644
--- a/source/lib/.cvsignore
+++ b/source/lib/.cvsignore
@@ -0,0 +1 @@
+*.p
diff --git a/source/lib/util.c b/source/lib/util.c
index 37c7a5519ee..35c97b14043 100644
--- a/source/lib/util.c
+++ b/source/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;