1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

s3:unix_msg: fix a tab<->space mixup in unix_msg_recv()

Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
This commit is contained in:
Michael Adam 2014-09-25 19:56:52 +02:00 committed by Volker Lendecke
parent d7d70c0d3c
commit a4edec4e8d

View File

@ -994,7 +994,7 @@ static void unix_msg_recv(struct unix_dgram_ctx *dgram_ctx,
buflen -= sizeof(cookie); buflen -= sizeof(cookie);
if (cookie == 0) { 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; return;
} }