Skip to content

Commit

Permalink
s3: libsmb: Plumb in additional_flags2 = FLAGS2_REPARSE_PATH to cli_c…
Browse files Browse the repository at this point in the history
…hkpath_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 00551d7 commit e2d7055
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 @@ -4158,6 +4158,7 @@ struct tevent_req *cli_chkpath_send(TALLOC_CTX *mem_ctx,
struct tevent_req *req = NULL, *subreq = NULL;
struct cli_chkpath_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_chkpath_state);
Expand All @@ -4177,8 +4178,13 @@ struct tevent_req *cli_chkpath_send(TALLOC_CTX *mem_ctx,
return tevent_req_post(req, ev);
}

subreq = cli_smb_send(state, ev, cli, SMBcheckpath, additional_flags, 0,
0, NULL, talloc_get_size(bytes), bytes);
if (clistr_is_previous_version_path(fname)) {
additional_flags2 = FLAGS2_REPARSE_PATH;
}

subreq = cli_smb_send(state, ev, cli, SMBcheckpath, additional_flags,
additional_flags2,
0, NULL, talloc_get_size(bytes), bytes);
if (tevent_req_nomem(subreq, req)) {
return tevent_req_post(req, ev);
}
Expand Down

0 comments on commit e2d7055

Please sign in to comment.