summaryrefslogtreecommitdiff
path: root/source3/nmbd/asyncdns.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-07-04 16:28:13 +0200
committerVolker Lendecke <vl@samba.org>2010-07-04 17:29:23 +0200
commit7f0e6df88345c1154f19fd263966ad20c73f5d52 (patch)
tree683ecaec64b2ed779300d038a9e70bdc7dbf8f63 /source3/nmbd/asyncdns.c
parent5a3c64668a33fc3fa8f87a78d06fa040eed9f8f8 (diff)
downloadsamba-7f0e6df88345c1154f19fd263966ad20c73f5d52.tar.gz
samba-7f0e6df88345c1154f19fd263966ad20c73f5d52.tar.bz2
samba-7f0e6df88345c1154f19fd263966ad20c73f5d52.zip
s3: Pass the new server_id through reinit_after_fork
Diffstat (limited to 'source3/nmbd/asyncdns.c')
-rw-r--r--source3/nmbd/asyncdns.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/source3/nmbd/asyncdns.c b/source3/nmbd/asyncdns.c
index 21ac5a0ff4..2701c96dd7 100644
--- a/source3/nmbd/asyncdns.c
+++ b/source3/nmbd/asyncdns.c
@@ -137,6 +137,7 @@ void kill_async_dns_child(void)
void start_async_dns(void)
{
int fd1[2], fd2[2];
+ NTSTATUS status;
CatchChild();
@@ -164,8 +165,11 @@ void start_async_dns(void)
CatchSignal(SIGHUP, SIG_IGN);
CatchSignal(SIGTERM, sig_term);
- if (!NT_STATUS_IS_OK(reinit_after_fork(nmbd_messaging_context(),
- nmbd_event_context(), true))) {
+ status = reinit_after_fork(nmbd_messaging_context(),
+ nmbd_event_context(),
+ procid_self(), true);
+
+ if (!NT_STATUS_IS_OK(status)) {
DEBUG(0,("reinit_after_fork() failed\n"));
smb_panic("reinit_after_fork() failed");
}