summaryrefslogtreecommitdiffstats
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-07-17 11:05:02 +0000
committerJeremy Allison <jra@samba.org>2014-08-11 23:57:12 +0200
commit28db680a0df9ce4329668d50ce7ba6d5a7c29761 (patch)
tree5fb2c6256586e0e81f3e6b8910340b27f9ff13c5 /source3
parent32d45cf2f3a0d709f35560f9cc119438a0a5b397 (diff)
downloadsamba-28db680a0df9ce4329668d50ce7ba6d5a7c29761.tar.gz
samba-28db680a0df9ce4329668d50ce7ba6d5a7c29761.tar.xz
samba-28db680a0df9ce4329668d50ce7ba6d5a7c29761.zip
smbd: Use messaging_cleanup()
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c
index bc07c0f1ed..bea25cbea5 100644
--- a/source3/smbd/server.c
+++ b/source3/smbd/server.c
@@ -420,8 +420,8 @@ static void remove_child_pid(struct smbd_parent_context *parent,
child_id = pid_to_procid(pid);
- ret = messaging_dgm_cleanup(parent->msg_ctx, pid);
- DEBUG(10, ("%s: messaging_dgm_cleanup returned %s\n",
+ ret = messaging_cleanup(parent->msg_ctx, pid);
+ DEBUG(10, ("%s: messaging_cleanup returned %s\n",
__func__, ret ? strerror(ret) : "ok"));
for (child = parent->children; child != NULL; child = child->next) {