From c5615c6113a72b2665efab1c1fcf50f0a85dfc8f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 15 Apr 2008 01:48:44 +0200 Subject: printing: call reinit_after_fork() in the backgroundqueue process metze (This used to be commit 9adb675a86e81c90e2bddfe984b5ac8f201fec75) --- source3/printing/printing.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source3') diff --git a/source3/printing/printing.c b/source3/printing/printing.c index eb304e7641..fdf5e6cc22 100644 --- a/source3/printing/printing.c +++ b/source3/printing/printing.c @@ -1406,6 +1406,11 @@ void start_background_queue(void) /* Child. */ DEBUG(5,("start_background_queue: background LPQ thread started\n")); + if (!reinit_after_fork(smbd_messaging_context())) { + DEBUG(0,("reinit_after_fork() failed\n")); + smb_panic("reinit_after_fork() failed"); + } + claim_connection( NULL, "smbd lpq backend", FLAG_MSG_GENERAL|FLAG_MSG_SMBD|FLAG_MSG_PRINT_GENERAL); -- cgit