mirror of
https://github.com/samba-team/samba.git
synced 2025-08-03 04:22:09 +03:00
s3: libsmb: Add uint16_t addtional_flags2 to cli_trans_send().
Not yet used. BUG: https://bugzilla.samba.org/show_bug.cgi?id=12165 Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Uri Simchoni <uri@samba.org>
This commit is contained in:
committed by
Uri Simchoni
parent
a876f915fd
commit
76bbc4c0c3
@ -600,7 +600,7 @@ static struct tevent_req *cli_list_trans_send(TALLOC_CTX *mem_ctx,
|
||||
}
|
||||
param_len = talloc_get_size(state->param);
|
||||
|
||||
subreq = cli_trans_send(state, state->ev, state->cli,
|
||||
subreq = cli_trans_send(state, state->ev, state->cli, 0,
|
||||
SMBtrans2, NULL, -1, 0, 0,
|
||||
state->setup, 1, 0,
|
||||
state->param, param_len, 10,
|
||||
@ -785,7 +785,7 @@ static void cli_list_trans_done(struct tevent_req *subreq)
|
||||
}
|
||||
param_len = talloc_get_size(state->param);
|
||||
|
||||
subreq = cli_trans_send(state, state->ev, state->cli,
|
||||
subreq = cli_trans_send(state, state->ev, state->cli, 0,
|
||||
SMBtrans2, NULL, -1, 0, 0,
|
||||
state->setup, 1, 0,
|
||||
state->param, param_len, 10,
|
||||
|
Reference in New Issue
Block a user