1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

Fix max_fd calculation in event_loop_once

For some bugs I really wonder how they can go undetected for so long.

Fix a bug reported by Mathias Dietz. No samba bugzilla entry, but still 100%
needed for 3-2-stable.

Volker
(cherry picked from commit 82c994dabc47bb4755c883a1f3651bb5d65cf2c5)
(This used to be commit 91c73e093a03b10426b671cb3e1dffb8a2455d47)
This commit is contained in:
Volker Lendecke 2008-06-11 18:56:20 +02:00
parent 95a1f88d93
commit 5b8259c112

View File

@ -344,7 +344,7 @@ int event_loop_once(struct event_context *ev)
return 0;
}
ret = sys_select(maxfd, &r_fds, &w_fds, NULL, &to);
ret = sys_select(maxfd+1, &r_fds, &w_fds, NULL, &to);
if (ret == -1 && errno != EINTR) {
return -1;