summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-11-05 19:19:17 +0100
committerVolker Lendecke <vl@samba.org>2008-11-08 10:42:28 +0100
commit52958ea115ab3d1d8cebaad47b5ffff7fc86a4cd (patch)
treee24938d7cbcfc206518bd2af5498474ca7735384 /source3
parent5e2956557b06b5b55dc8810b51bdbcf3e7f03c98 (diff)
downloadsamba-52958ea115ab3d1d8cebaad47b5ffff7fc86a4cd.tar.gz
samba-52958ea115ab3d1d8cebaad47b5ffff7fc86a4cd.tar.bz2
samba-52958ea115ab3d1d8cebaad47b5ffff7fc86a4cd.zip
Remove a direct inbuf reference (should have been removed with 8987641d...)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/aio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/aio.c b/source3/smbd/aio.c
index fd553c3fc4..8beed0744c 100644
--- a/source3/smbd/aio.c
+++ b/source3/smbd/aio.c
@@ -506,7 +506,7 @@ static int handle_aio_write_complete(struct aio_extra *aio_ex)
ERROR_BOTH(map_nt_error_from_unix(ret), ERRHRD, ERRdiskfull);
srv_set_message(outbuf,0,0,true);
} else {
- bool write_through = BITSETW(aio_ex->req->inbuf+smb_vwv7,0);
+ bool write_through = BITSETW(aio_ex->req->vwv+7,0);
NTSTATUS status;
SSVAL(outbuf,smb_vwv2,nwritten);