summaryrefslogtreecommitdiffstats
path: root/source/smbd/oplock.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/smbd/oplock.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/smbd/oplock.c')
-rw-r--r--source/smbd/oplock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/oplock.c b/source/smbd/oplock.c
index 1455b4d8e58..99fe7a69fab 100644
--- a/source/smbd/oplock.c
+++ b/source/smbd/oplock.c
@@ -135,7 +135,7 @@ BOOL receive_local_message(fd_set *fds, char *buffer, int buffer_len, int timeou
to.tv_sec = timeout / 1000;
to.tv_usec = (timeout % 1000) * 1000;
- selrtn = sys_select(maxfd+1,fds,&to);
+ selrtn = sys_select(maxfd+1,fds,NULL, &to);
/* Check if error */
if(selrtn == -1) {