From b227b98a6c87b18db2bc949241ead6bbc46baff4 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 25 Nov 2005 06:50:29 +0000 Subject: r11894: fixed SMB2 trans code for pipe_flags (This used to be commit 02e3cb87c7673788e3861f33356a18b8d38d2d66) --- source4/libcli/smb2/trans.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/libcli') 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); -- cgit