From 281c58e04654e152caead47602603cfbf7fd4e0f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 24 Nov 2014 16:27:39 +0100 Subject: unix_msg: Reformat unix_dgram_send a bit This makes the next commit a bit more readable Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- source3/lib/unix_msg/unix_msg.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source3/lib/unix_msg/unix_msg.c b/source3/lib/unix_msg/unix_msg.c index 00ac7f52d3..9641bff556 100644 --- a/source3/lib/unix_msg/unix_msg.c +++ b/source3/lib/unix_msg/unix_msg.c @@ -741,7 +741,9 @@ static int unix_dgram_send(struct unix_dgram_ctx *ctx, if (ret >= 0) { return 0; } - if ((errno != EWOULDBLOCK) && (errno != EAGAIN) && (errno != EINTR)) { + if ((errno != EWOULDBLOCK) && + (errno != EAGAIN) && + (errno != EINTR)) { return errno; } -- cgit