diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-05-15 20:46:10 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-05-15 20:46:10 +1000 |
commit | 8846981807a08e86c19b585be135b738eb9edf61 (patch) | |
tree | 24000d774fd51567033185eff80150cebdd2aa97 /source4/libcli/smb2 | |
parent | 0abc2e2020f40d018587eb265f2a1467fdba4c89 (diff) | |
download | samba-8846981807a08e86c19b585be135b738eb9edf61.tar.gz samba-8846981807a08e86c19b585be135b738eb9edf61.tar.bz2 samba-8846981807a08e86c19b585be135b738eb9edf61.zip |
update some SMB2 find flags
(This used to be commit b7560afd4bab984c0083e9687b69bc42970ad932)
Diffstat (limited to 'source4/libcli/smb2')
-rw-r--r-- | source4/libcli/smb2/find.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/smb2/find.c b/source4/libcli/smb2/find.c index 6b4902a026..8ebfd81bcd 100644 --- a/source4/libcli/smb2/find.c +++ b/source4/libcli/smb2/find.c @@ -38,7 +38,7 @@ struct smb2_request *smb2_find_send(struct smb2_tree *tree, struct smb2_find *io SCVAL(req->out.body, 0x02, io->in.level); SCVAL(req->out.body, 0x03, io->in.continue_flags); - SIVAL(req->out.body, 0x04, io->in.unknown); + SIVAL(req->out.body, 0x04, io->in.file_index); smb2_push_handle(req->out.body+0x08, &io->in.file.handle); status = smb2_push_o16s16_string(&req->out, 0x18, io->in.pattern); |