unix_msg: Reformat unix_dgram_send a bit
authorVolker Lendecke <vl@samba.org>
Mon, 24 Nov 2014 15:27:39 +0000 (16:27 +0100)
committerJeremy Allison <jra@samba.org>
Mon, 24 Nov 2014 17:52:05 +0000 (18:52 +0100)
This makes the next commit a bit more readable

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/lib/unix_msg/unix_msg.c

index 00ac7f52d3d531ebcd2825497898be70a01bf52c..9641bff55664a51174da8825bb4b830c188aecc1 100644 (file)
@@ -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;
        }