summaryrefslogtreecommitdiffstats
path: root/source3/lib/unix_msg
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2014-09-25 19:56:52 +0200
committerVolker Lendecke <vl@samba.org>2014-09-27 10:17:05 +0200
commita4edec4e8d64f410cd0dd21752d3c27d0915c906 (patch)
tree2074bcf28e924b23913a7b737f1b5d911b96e428 /source3/lib/unix_msg
parentd7d70c0d3c2efaa65318b1f91512746a71846341 (diff)
downloadsamba-a4edec4e8d64f410cd0dd21752d3c27d0915c906.tar.gz
samba-a4edec4e8d64f410cd0dd21752d3c27d0915c906.tar.xz
samba-a4edec4e8d64f410cd0dd21752d3c27d0915c906.zip
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>
Diffstat (limited to 'source3/lib/unix_msg')
-rw-r--r--source3/lib/unix_msg/unix_msg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/unix_msg/unix_msg.c b/source3/lib/unix_msg/unix_msg.c
index 28ea51444c..01554a22ae 100644
--- a/source3/lib/unix_msg/unix_msg.c
+++ b/source3/lib/unix_msg/unix_msg.c
@@ -994,7 +994,7 @@ 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;
}