diff options
author | Jeremy Allison <jra@samba.org> | 2002-01-31 23:26:12 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-01-31 23:26:12 +0000 |
commit | 69adbb0ce3bb9d5bd569c13aaa3ac8f390c1586a (patch) | |
tree | 64a15ac400842319f5db5d2c504632a0ea5ad751 /source3/utils | |
parent | 0815cd63bd878d72c154caf5e121352b2af10a53 (diff) | |
download | samba-69adbb0ce3bb9d5bd569c13aaa3ac8f390c1586a.tar.gz samba-69adbb0ce3bb9d5bd569c13aaa3ac8f390c1586a.tar.bz2 samba-69adbb0ce3bb9d5bd569c13aaa3ac8f390c1586a.zip |
Fix from Michael Steffens <michael_steffens@hp.com> to make signal
processing work correctly in winbindd. This is a really good patch
that gives full select semantics to the Samba modified select.
Jeremy.
(This used to be commit 3af16ade173cac24c1ac5eff4a36b439f16ac036)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/smbfilter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/smbfilter.c b/source3/utils/smbfilter.c index b05427724e..5a2d394706 100644 --- a/source3/utils/smbfilter.c +++ b/source3/utils/smbfilter.c @@ -137,7 +137,7 @@ static void filter_child(int c, struct in_addr dest_ip) if (s != -1) FD_SET(s, &fds); if (c != -1) FD_SET(c, &fds); - num = sys_select_intr(MAX(s+1, c+1),&fds,NULL); + num = sys_select_intr(MAX(s+1, c+1),&fds,NULL,NULL,NULL); if (num <= 0) continue; if (c != -1 && FD_ISSET(c, &fds)) { @@ -201,7 +201,7 @@ static void start_filter(char *desthost) FD_ZERO(&fds); FD_SET(s, &fds); - num = sys_select_intr(s+1,&fds,NULL); + num = sys_select_intr(s+1,&fds,NULL,NULL,NULL); if (num > 0) { c = accept(s, &addr, &in_addrlen); if (c != -1) { |