diff options
author | Luke Leighton <lkcl@samba.org> | 1999-12-01 02:15:14 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-12-01 02:15:14 +0000 |
commit | e4d92ff9dfc51735e6932748f66a7c20b2c1cb6a (patch) | |
tree | a8ec8fc10a8c63a3bc92235eae9d68f36865fb3a /source/lib/util.c | |
parent | 5b5719d6a08130db1062bfa24123cedcdc692bff (diff) | |
download | samba-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.c | 2 |
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); |