diff options
author | Volker Lendecke <vl@samba.org> | 2012-02-26 16:49:09 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-03-10 15:34:11 +0100 |
commit | 90b33a05e967e9e29c4584bed188ef6fa5a3fbf0 (patch) | |
tree | 52b88ef421378abe267a39486c07335c90b2308b /source3/smbd/nttrans.c | |
parent | a28a740f5805e0bd766cedaa581066c6e9b15e3a (diff) | |
download | samba-90b33a05e967e9e29c4584bed188ef6fa5a3fbf0.tar.gz samba-90b33a05e967e9e29c4584bed188ef6fa5a3fbf0.tar.bz2 samba-90b33a05e967e9e29c4584bed188ef6fa5a3fbf0.zip |
s3: Make sure the andX chains are ended correctly
Normally chain_reply took care of this. This will go away soon.
Diffstat (limited to 'source3/smbd/nttrans.c')
-rw-r--r-- | source3/smbd/nttrans.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index cfa048ba19..b03e0997a2 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -352,6 +352,9 @@ static void do_ntcreate_pipe_open(connection_struct *conn, reply_outbuf(req, 34, 0); } + SSVAL(req->outbuf, smb_vwv0, 0xff); /* andx chain ends */ + SSVAL(req->outbuf, smb_vwv1, 0); /* no andx offset */ + p = (char *)req->outbuf + smb_vwv2; p++; SSVAL(p,0,pnum); @@ -634,6 +637,9 @@ void reply_ntcreate_and_X(struct smb_request *req) reply_outbuf(req, 34, 0); } + SSVAL(req->outbuf, smb_vwv0, 0xff); /* andx chain ends */ + SSVAL(req->outbuf, smb_vwv1, 0); /* no andx offset */ + p = (char *)req->outbuf + smb_vwv2; SCVAL(p, 0, oplock_granted); |