summaryrefslogtreecommitdiffstats
path: root/source/smbd/reply.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-10-04 13:13:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:31:10 -0500
commit492977016fa66ce0e98a5bdd1c0f00eacdf13f0c (patch)
treed087f2eb8ea95104e383456ad17a8fff51c5f0e1 /source/smbd/reply.c
parentda5736f2103be2229cc3d4421c68f33b3242fa6d (diff)
downloadsamba-492977016fa66ce0e98a5bdd1c0f00eacdf13f0c.tar.gz
samba-492977016fa66ce0e98a5bdd1c0f00eacdf13f0c.tar.xz
samba-492977016fa66ce0e98a5bdd1c0f00eacdf13f0c.zip
r25502: Fix bug 5006
Thanks to Joerg.Bernau at web.de
Diffstat (limited to 'source/smbd/reply.c')
-rw-r--r--source/smbd/reply.c2
1 files changed, 1 insertions, 1 deletions
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;