diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-05-31 01:11:40 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-05-31 01:11:40 +0000 |
commit | d98bea900ee694cdba83149620c65bd7f8765f26 (patch) | |
tree | 23d2ee7a6fc586dbfbbc2961c3214455f645cc61 /source3/nmbd | |
parent | 5c4776f496d814b0ab5b75b5d029dc0998236365 (diff) | |
download | samba-d98bea900ee694cdba83149620c65bd7f8765f26.tar.gz samba-d98bea900ee694cdba83149620c65bd7f8765f26.tar.bz2 samba-d98bea900ee694cdba83149620c65bd7f8765f26.zip |
namepacket.c: Block SIGTERM correctly - we can only take them at defined points.
nameserv.c: Fixup name release code - used when we are going down.
nameservreply.c: Relaxed check for deleting name - original code never deleted.
nmbd.c: Block SIGTERM signals most of the time - see comment on namepacket above.
Jeremy (jallison@whistle.com)
(This used to be commit 9f4e01224751134c2f7701e2aea87d06a79d77a4)
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 99d65d551a..dc3f642cd6 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -571,6 +571,8 @@ static void usage(char *pname) DEBUG(3,("Dumped names\n")); + /* We can only take sigterm signals in the select. */ + BlockSignals(True,SIGTERM); process(); close_sockets(); |