Skip to content

Commit

Permalink
s3: libsmb: Plumb in additional_flags2 = FLAGS2_REPARSE_PATH to cli_s…
Browse files Browse the repository at this point in the history
…etatr_send().

BUG: https://bugzilla.samba.org/show_bug.cgi?id=12165

Signed-off-by: Jeremy Allison <[email protected]>
Reviewed-by: Uri Simchoni <[email protected]>
  • Loading branch information
jrasamba authored and urisimchoni committed Aug 19, 2016
1 parent 461000c commit 00551d7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions source3/libsmb/clifile.c
Original file line number Diff line number Diff line change
Expand Up @@ -4023,6 +4023,7 @@ struct tevent_req *cli_setatr_send(TALLOC_CTX *mem_ctx,
struct tevent_req *req = NULL, *subreq = NULL;
struct cli_setatr_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_setatr_state);
Expand Down Expand Up @@ -4056,8 +4057,13 @@ struct tevent_req *cli_setatr_send(TALLOC_CTX *mem_ctx,
return tevent_req_post(req, ev);
}

subreq = cli_smb_send(state, ev, cli, SMBsetatr, additional_flags, 0,
8, state->vwv, talloc_get_size(bytes), bytes);
if (clistr_is_previous_version_path(fname)) {
additional_flags2 = FLAGS2_REPARSE_PATH;
}

subreq = cli_smb_send(state, ev, cli, SMBsetatr, additional_flags,
additional_flags2,
8, state->vwv, talloc_get_size(bytes), bytes);
if (tevent_req_nomem(subreq, req)) {
return tevent_req_post(req, ev);
}
Expand Down

0 comments on commit 00551d7

Please sign in to comment.