1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

smbd: Don't stop sending to children when one send fails

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2016-06-21 16:10:14 +02:00 committed by Jeremy Allison
parent 99b8acaa80
commit 2bd34516d4

View File

@ -205,7 +205,8 @@ static NTSTATUS messaging_send_to_children(struct messaging_context *msg_ctx,
pid_to_procid(child->pid),
msg_type, data);
if (!NT_STATUS_IS_OK(status)) {
return status;
DBG_DEBUG("messaging_send(%d) failed: %s\n",
(int)child->pid, nt_errstr(status));
}
}
return NT_STATUS_OK;