summaryrefslogtreecommitdiff
path: root/source3/nmbd/nmbd_packets.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-23 10:15:00 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-27 15:28:09 +0100
commit2630d4a2523894386f4e1a37cfb3a312f4e8fdf5 (patch)
tree7c8f1d33d5de1a518ee2a1f6114840b4b8c00534 /source3/nmbd/nmbd_packets.c
parente663df195c2a6c108e90273b8fa9831abdbc3b1c (diff)
downloadsamba-2630d4a2523894386f4e1a37cfb3a312f4e8fdf5.tar.gz
samba-2630d4a2523894386f4e1a37cfb3a312f4e8fdf5.tar.bz2
samba-2630d4a2523894386f4e1a37cfb3a312f4e8fdf5.zip
s3:nmbd: as the sig_term() handler only sets a flag we don't need to block SIGTERM
The arguments of commit d98bea900ee694cdba83149620c65bd7f8765f26 are no longer valid. metze
Diffstat (limited to 'source3/nmbd/nmbd_packets.c')
-rw-r--r--source3/nmbd/nmbd_packets.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source3/nmbd/nmbd_packets.c b/source3/nmbd/nmbd_packets.c
index 489034899e..f69845b346 100644
--- a/source3/nmbd/nmbd_packets.c
+++ b/source3/nmbd/nmbd_packets.c
@@ -1794,16 +1794,8 @@ bool listen_for_packets(bool run_election)
&r_fds, &w_fds, &timeout, &maxfd);
}
- /* Prepare for the select - allow certain signals. */
-
- BlockSignals(False, SIGTERM);
-
selrtn = sys_select(maxfd+1,&r_fds,&w_fds,NULL,&timeout);
- /* We can only take signals when we are in the select - block them again here. */
-
- BlockSignals(True, SIGTERM);
-
if (run_events(nmbd_event_context(), selrtn, &r_fds, &w_fds)) {
return False;
}