From: Volker Lendecke Date: Tue, 21 Jun 2016 14:10:14 +0000 (+0200) Subject: smbd: Don't stop sending to children when one send fails X-Git-Tag: tdb-1.3.10~331 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2bd34516d4ee0eb44cdcb3c97ccbc062ba5339cf;p=thirdparty%2Fsamba.git smbd: Don't stop sending to children when one send fails Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 65dc173a0ef..07eca5135e4 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -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;