From 492977016fa66ce0e98a5bdd1c0f00eacdf13f0c Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 4 Oct 2007 13:13:16 +0000 Subject: [PATCH] r25502: Fix bug 5006 Thanks to Joerg.Bernau at web.de --- source/smbd/reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/smbd/reply.c b/source/smbd/reply.c index d6813bef805..e27272f0dda 100644 --- a/source/smbd/reply.c +++ b/source/smbd/reply.c @@ -3923,7 +3923,7 @@ void reply_write_and_X(connection_struct *conn, struct smb_request *req) if(IVAL(req->inbuf,smb_vwv12) != 0) { DEBUG(0,("reply_write_and_X - large offset (%x << 32) " "used and we don't support 64 bit offsets.\n", - (unsigned int)IVAL(inbuf,smb_vwv12) )); + (unsigned int)IVAL(req->inbuf,smb_vwv12) )); reply_doserror(req, ERRDOS, ERRbadaccess); END_PROFILE(SMBwriteX); return; -- 2.11.4.GIT