diff options
author | James Peach <jpeach@samba.org> | 2007-06-01 19:34:08 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:23:04 -0500 |
commit | 87b92e7ebda018f1d6a588748e282dc1a2c50613 (patch) | |
tree | 2d2f6df4f9d2a26ebfe0691fa0d97e18f8114edb /source/smbd | |
parent | 1c1f710e3e2e222c9d91a5650844c1db5ebd5a3a (diff) | |
download | samba-87b92e7ebda018f1d6a588748e282dc1a2c50613.tar.gz samba-87b92e7ebda018f1d6a588748e282dc1a2c50613.tar.xz samba-87b92e7ebda018f1d6a588748e282dc1a2c50613.zip |
r23299: Fix the build for !WITH_SENDFILE.
Diffstat (limited to 'source/smbd')
-rw-r--r-- | source/smbd/reply.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c index 6d4c08b663d..3a80d9eaa6e 100644 --- a/source/smbd/reply.c +++ b/source/smbd/reply.c @@ -2246,11 +2246,10 @@ void send_file_readbraw(connection_struct *conn, files_struct *fsp, SMB_OFF_T st return; } - - normal_readbraw: - #endif +normal_readbraw: + if (nread > 0) { ret = read_file(fsp,outbuf+4,startpos,nread); #if 0 /* mincount appears to be ignored in a W2K server. JRA. */ @@ -2646,7 +2645,7 @@ int send_file_readX(connection_struct *conn, char *inbuf,char *outbuf,int length #endif - normal_read: +normal_read: if ((smb_maxcnt & 0xFF0000) > 0x10000) { int sendlen = setup_readX_header(inbuf,outbuf,smb_maxcnt) - smb_maxcnt; |