From a7cc448dc232ac08bda0eef1bbc8e22b52eea5b5 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 23 Oct 2009 14:31:07 +1100 Subject: s4-server: call the ldb_wrap_fork_hook() after a fork() This will be used to allow us to cancel any pending transactions after a fork. --- source4/smbd/process_prefork.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/smbd/process_prefork.c') diff --git a/source4/smbd/process_prefork.c b/source4/smbd/process_prefork.c index 979a65482e..db5633b9f2 100644 --- a/source4/smbd/process_prefork.c +++ b/source4/smbd/process_prefork.c @@ -32,6 +32,7 @@ #include "system/filesys.h" #include "cluster/cluster.h" #include "param/param.h" +#include "lib/ldb_wrap.h" #ifdef HAVE_SETPROCTITLE #ifdef HAVE_SETPROCTITLE_H @@ -60,6 +61,7 @@ static void prefork_reload_after_fork(void) if (tdb_reopen_all(1) == -1) { DEBUG(0,("prefork_reload_after_fork: tdb_reopen_all failed.\n")); } + ldb_wrap_fork_hook(); /* Ensure that the forked children do not expose identical random streams */ set_need_random_reseed(); -- cgit