mirror of
https://github.com/samba-team/samba.git
synced 2025-10-23 11:33:16 +03:00
s3: libsmb: s3: libsmb: Plumb in additional_flags2 = FLAGS2_REPARSE_PATH to cli_mkdir_send().
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
3242a0b9f0
commit
3081604734
@@ -1590,6 +1590,7 @@ struct tevent_req *cli_mkdir_send(TALLOC_CTX *mem_ctx,
|
||||
struct tevent_req *req = NULL, *subreq = NULL;
|
||||
struct cli_mkdir_state *state = NULL;
|
||||
uint8_t additional_flags = 0;
|
||||
uint16_t additional_flags2 = 0;
|
||||
uint8_t *bytes = NULL;
|
||||
|
||||
req = tevent_req_create(mem_ctx, &state, struct cli_mkdir_state);
|
||||
@@ -1609,8 +1610,13 @@ struct tevent_req *cli_mkdir_send(TALLOC_CTX *mem_ctx,
|
||||
return tevent_req_post(req, ev);
|
||||
}
|
||||
|
||||
subreq = cli_smb_send(state, ev, cli, SMBmkdir, additional_flags, 0,
|
||||
0, NULL, talloc_get_size(bytes), bytes);
|
||||
if (clistr_is_previous_version_path(dname)) {
|
||||
additional_flags2 = FLAGS2_REPARSE_PATH;
|
||||
}
|
||||
|
||||
subreq = cli_smb_send(state, ev, cli, SMBmkdir, additional_flags,
|
||||
additional_flags2,
|
||||
0, NULL, talloc_get_size(bytes), bytes);
|
||||
if (tevent_req_nomem(subreq, req)) {
|
||||
return tevent_req_post(req, ev);
|
||||
}
|
||||
|
Reference in New Issue
Block a user