summaryrefslogtreecommitdiff
path: root/source3/smbd/reply.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2004-12-20 22:04:53 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:53:42 -0500
commit52d377b75f7740b529c337c2e8585826246bc148 (patch)
tree9fdeed995dbe5557d2d70054a6ad963abf1698f7 /source3/smbd/reply.c
parent50f3d8f249401f7c142ca785ef0f20585a38d3a3 (diff)
downloadsamba-52d377b75f7740b529c337c2e8585826246bc148.tar.gz
samba-52d377b75f7740b529c337c2e8585826246bc148.tar.bz2
samba-52d377b75f7740b529c337c2e8585826246bc148.zip
r4295: Don't include header len in data write debug.
Jeremy. (This used to be commit 473babfecac87a7e1068246bddc171a464be59e5)
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r--source3/smbd/reply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c
index c5ed0eb8ba..26a0c9e7a9 100644
--- a/source3/smbd/reply.c
+++ b/source3/smbd/reply.c
@@ -2188,7 +2188,7 @@ int send_file_readX(connection_struct *conn, char *inbuf,char *outbuf,int length
exit_server("send_file_readX: fake_sendfile failed");
}
DEBUG( 3, ( "send_file_readX: fake_sendfile fnum=%d max=%d nread=%d\n",
- fsp->fnum, (int)smb_maxcnt, (int)(nread + (data - outbuf)) ) );
+ fsp->fnum, (int)smb_maxcnt, (int)nread ) );
/* Returning -1 here means successful sendfile. */
return -1;
}