summaryrefslogtreecommitdiffstats
path: root/source/lib/util.c
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-12-01 02:15:14 +0000
committerLuke Leighton <lkcl@samba.org>1999-12-01 02:15:14 +0000
commite4d92ff9dfc51735e6932748f66a7c20b2c1cb6a (patch)
treea8ec8fc10a8c63a3bc92235eae9d68f36865fb3a /source/lib/util.c
parent5b5719d6a08130db1062bfa24123cedcdc692bff (diff)
downloadsamba-e4d92ff9dfc51735e6932748f66a7c20b2c1cb6a.tar.gz
samba-e4d92ff9dfc51735e6932748f66a7c20b2c1cb6a.tar.xz
samba-e4d92ff9dfc51735e6932748f66a7c20b2c1cb6a.zip
sys_select added one more argument (read, write selectors).
Diffstat (limited to 'source/lib/util.c')
-rw-r--r--source/lib/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/util.c b/source/lib/util.c
index 26f0482162a..9bcbe1a9c7c 100644
--- a/source/lib/util.c
+++ b/source/lib/util.c
@@ -1148,7 +1148,7 @@ void msleep(int t)
FD_ZERO(&fds);
errno = 0;
- sys_select(0,&fds,&tval);
+ sys_select(0,&fds,NULL, &tval);
GetTimeOfDay(&t2);
tdiff = TvalDiff(&t1,&t2);