1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-23 06:50:21 +03:00

unix_msg: Fix 80-line formatting

This is pretty fresh code, so hope this change does not fall under the "no
reformatting" rule yet

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2014-11-25 18:50:25 +01:00 committed by Jeremy Allison
parent 764cfda280
commit 0e26e0f6f6

View File

@ -922,7 +922,8 @@ static void unix_msg_recv(struct unix_dgram_ctx *dgram_ctx,
buflen -= sizeof(cookie);
if (cookie == 0) {
ctx->recv_callback(ctx, buf, buflen, fds, num_fds, ctx->private_data);
ctx->recv_callback(ctx, buf, buflen, fds, num_fds,
ctx->private_data);
return;
}
@ -974,7 +975,8 @@ static void unix_msg_recv(struct unix_dgram_ctx *dgram_ctx,
}
DLIST_REMOVE(ctx->msgs, msg);
ctx->recv_callback(ctx, msg->buf, msg->msglen, fds, num_fds, ctx->private_data);
ctx->recv_callback(ctx, msg->buf, msg->msglen, fds, num_fds,
ctx->private_data);
free(msg);
return;