diff options
author | Jeremy Allison <jra@samba.org> | 2014-04-18 15:06:05 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-04-23 22:33:09 +0200 |
commit | a35c9d6a638e20c1f9ea81602805722561887c60 (patch) | |
tree | 0ade8a77c9019c45600033000383e2c0ff53b832 | |
parent | 843f0946289343b6fcc6f41ad5ff5bd090a9399b (diff) | |
download | samba-a35c9d6a638e20c1f9ea81602805722561887c60.tar.gz samba-a35c9d6a638e20c1f9ea81602805722561887c60.tar.xz samba-a35c9d6a638e20c1f9ea81602805722561887c60.zip |
s3: smbd: Call dgram cleanup init background setup.
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
-rw-r--r-- | source3/smbd/server.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 5c764be9235..298afb924c4 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -1448,6 +1448,10 @@ extern void build_options(bool screen); exit_daemon("Samba cannot init notification", EACCES); } + if (!messaging_parent_dgm_cleanup_init(msg_ctx)) { + exit(1); + } + if (!smbd_scavenger_init(NULL, msg_ctx, ev_ctx)) { exit_daemon("Samba cannot init scavenging", EACCES); } |