From: Stefan Metzmacher Date: Mon, 14 Apr 2008 23:48:44 +0000 (+0200) Subject: printing: call reinit_after_fork() in the backgroundqueue process X-Git-Tag: samba-3.3.0pre1~2641^2~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9adb675a86e81c90e2bddfe984b5ac8f201fec75;p=thirdparty%2Fsamba.git printing: call reinit_after_fork() in the backgroundqueue process metze --- diff --git a/source/printing/printing.c b/source/printing/printing.c index eb304e76411..fdf5e6cc224 100644 --- a/source/printing/printing.c +++ b/source/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);