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 | 3af16ade173cac24c1ac5eff4a36b439f16ac036 (patch) | |
tree | 0a506b91376802528f1cf1b62d8fbda90f82a89a /source/client | |
parent | 9c8a2fe4df21c29c90dc8493dade2b12314234c3 (diff) | |
download | samba-3af16ade173cac24c1ac5eff4a36b439f16ac036.tar.gz samba-3af16ade173cac24c1ac5eff4a36b439f16ac036.tar.xz samba-3af16ade173cac24c1ac5eff4a36b439f16ac036.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.
Diffstat (limited to 'source/client')
-rw-r--r-- | source/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/client.c b/source/client/client.c index c491efd194b..1daba28b98e 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -2169,7 +2169,7 @@ static void readline_callback(void) timeout.tv_sec = 0; timeout.tv_usec = 0; - sys_select_intr(cli->fd+1,&fds,&timeout); + sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout); /* We deliberately use receive_smb instead of client_receive_smb as we want to receive |