diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-03 08:29:06 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-03 08:29:06 +0000 |
commit | 60efedd4c0e2ec90ac9cfa300142210b4c7fa7ea (patch) | |
tree | 98d9a1d0d44bb7e4617f8fca434993cf600d0c0e | |
parent | 4261ed2e8385761e39a7bf02cddcf8a0dcae253e (diff) | |
download | samba-60efedd4c0e2ec90ac9cfa300142210b4c7fa7ea.tar.gz samba-60efedd4c0e2ec90ac9cfa300142210b4c7fa7ea.tar.bz2 samba-60efedd4c0e2ec90ac9cfa300142210b4c7fa7ea.zip |
- ignore *.p files
- make msleep() non-static
(This used to be commit 688a749484aa807075d2ce16d750c4f3494f3e55)
-rw-r--r-- | source3/lib/.cvsignore | 1 | ||||
-rw-r--r-- | source3/lib/util.c | 2 |
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; |