From ed443034ae5ab468356a2aa411bdde40715042e1 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 11 May 2009 23:23:17 -0700 Subject: Fix warning about unused label with no sendfile. Jeremy. --- source3/smbd/reply.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source3/smbd') diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 418c8ba788..f1275b1088 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -3454,10 +3454,11 @@ static void send_file_readX(connection_struct *conn, struct smb_request *req, SMB_PERFCOUNT_END(&req->pcd); return; } -#endif normal_read: +#endif + if ((smb_maxcnt & 0xFF0000) > 0x10000) { uint8 headerbuf[smb_size + 2*12]; -- cgit