diff options
Diffstat (limited to 'source3/lib/unix_msg')
-rw-r--r-- | source3/lib/unix_msg/unix_msg.c | 4 |
1 files changed, 3 insertions, 1 deletions
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; } |