diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-11-25 06:50:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:46:43 -0500 |
commit | b227b98a6c87b18db2bc949241ead6bbc46baff4 (patch) | |
tree | 8f2cff84d12c89d410fa5d9c3e51efb6ceb23991 /source4/libcli/smb2/trans.c | |
parent | cc6891f88393c225b08767c693b722a8a403d3c4 (diff) | |
download | samba-b227b98a6c87b18db2bc949241ead6bbc46baff4.tar.gz samba-b227b98a6c87b18db2bc949241ead6bbc46baff4.tar.bz2 samba-b227b98a6c87b18db2bc949241ead6bbc46baff4.zip |
r11894: fixed SMB2 trans code for pipe_flags
(This used to be commit 02e3cb87c7673788e3861f33356a18b8d38d2d66)
Diffstat (limited to 'source4/libcli/smb2/trans.c')
-rw-r--r-- | source4/libcli/smb2/trans.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/smb2/trans.c b/source4/libcli/smb2/trans.c index fd80315e3f..cc03209c76 100644 --- a/source4/libcli/smb2/trans.c +++ b/source4/libcli/smb2/trans.c @@ -38,7 +38,7 @@ struct smb2_request *smb2_trans_send(struct smb2_tree *tree, struct smb2_trans * if (req == NULL) return NULL; SSVAL(req->out.body, 0x02, 0); /* pad */ - SIVAL(req->out.body, 0x04, io->in.unknown1); + SIVAL(req->out.body, 0x04, io->in.pipe_flags); smb2_push_handle(req->out.body+0x08, &io->in.handle); SIVAL(req->out.body, 0x20, io->in.unknown2); SIVAL(req->out.body, 0x2C, io->in.max_response_size); |