From 046d38faa5e78f2bdcfcdb3b1582427c2ecc80b8 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 30 Oct 2010 11:24:15 +1100 Subject: s4-smbd: don't initialise process models more than once this also removes the event_context parameter from process model initialisation. It isn't needed, and is confusing when a process model init can be called from more than one place, possibly with different event contexts. Pair-Programmed-With: Andrew Bartlett --- source4/dns_server/dns_server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/dns_server') diff --git a/source4/dns_server/dns_server.c b/source4/dns_server/dns_server.c index 635cd9507f..8e37fc21d3 100644 --- a/source4/dns_server/dns_server.c +++ b/source4/dns_server/dns_server.c @@ -550,7 +550,7 @@ static NTSTATUS dns_startup_interfaces(struct dns_server *dns, struct loadparm_c /* within the dns task we want to be a single process, so ask for the single process model ops and pass these to the stream_setup_socket() call. */ - model_ops = process_model_startup(dns->task->event_ctx, "single"); + model_ops = process_model_startup("single"); if (!model_ops) { DEBUG(0,("Can't find 'single' process model_ops\n")); return NT_STATUS_INTERNAL_ERROR; -- cgit