mirror of
https://github.com/samba-team/samba.git
synced 2025-07-30 19:42:05 +03:00
s3: libsmb: Add uint16_t addtional_flags2 to cli_smb_req_create().
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
76bbc4c0c3
commit
79c8b75671
@ -386,8 +386,8 @@ struct tevent_req *cli_session_setup_guest_create(TALLOC_CTX *mem_ctx,
|
||||
state->bytes.iov_base = (void *)bytes;
|
||||
state->bytes.iov_len = talloc_get_size(bytes);
|
||||
|
||||
subreq = cli_smb_req_create(state, ev, cli, SMBsesssetupX, 0, 13, vwv,
|
||||
1, &state->bytes);
|
||||
subreq = cli_smb_req_create(state, ev, cli, SMBsesssetupX, 0, 0, 13,
|
||||
vwv, 1, &state->bytes);
|
||||
if (subreq == NULL) {
|
||||
TALLOC_FREE(req);
|
||||
return NULL;
|
||||
@ -2549,7 +2549,7 @@ struct tevent_req *cli_tcon_andx_create(TALLOC_CTX *mem_ctx,
|
||||
state->bytes.iov_base = (void *)bytes;
|
||||
state->bytes.iov_len = talloc_get_size(bytes);
|
||||
|
||||
subreq = cli_smb_req_create(state, ev, cli, SMBtconX, 0, 4, vwv,
|
||||
subreq = cli_smb_req_create(state, ev, cli, SMBtconX, 0, 0, 4, vwv,
|
||||
1, &state->bytes);
|
||||
if (subreq == NULL) {
|
||||
TALLOC_FREE(req);
|
||||
|
Reference in New Issue
Block a user