diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-10-04 13:13:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:31:10 -0500 |
commit | 4b21570812bfb070d4f4cc287780460c6bc50cca (patch) | |
tree | 37f7271242066ab8fcc30eb5b133c066c684fd9a | |
parent | e3d07ff9fefc2257bace241f17d8ce58f24bc8c8 (diff) | |
download | samba-4b21570812bfb070d4f4cc287780460c6bc50cca.tar.gz samba-4b21570812bfb070d4f4cc287780460c6bc50cca.tar.bz2 samba-4b21570812bfb070d4f4cc287780460c6bc50cca.zip |
r25502: Fix bug 5006
Thanks to Joerg.Bernau at web.de
(This used to be commit 492977016fa66ce0e98a5bdd1c0f00eacdf13f0c)
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index d6813bef80..e27272f0dd 100644 --- a/source3/smbd/reply.c +++ b/source3/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; |