1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r23782: I tested this against NT4 PDC, W2K Server, W2K3 Dc, and a Win XP std alone

client and they all work with this code.
(This used to be commit 44e22581d7)
This commit is contained in:
Simo Sorce 2007-07-09 22:15:22 +00:00 committed by Gerald (Jerry) Carter
parent 2a9b4da0fa
commit f622dc8d2f

View File

@ -730,7 +730,7 @@ static int cacl_set(struct cli_state *cli, char *filename,
sort_acl(old->dacl);
/* Create new security descriptor and set it */
#if 0
/* We used to just have "WRITE_DAC_ACCESS" without WRITE_OWNER.
But if we're sending an owner, even if it's the same as the one
that already exists then W2K3 insists we open with WRITE_OWNER access.
@ -742,12 +742,7 @@ static int cacl_set(struct cli_state *cli, char *filename,
NULL, old->dacl, &sd_size);
fnum = cli_nt_create(cli, filename, WRITE_DAC_ACCESS|WRITE_OWNER_ACCESS);
#else
sd = make_sec_desc(ctx,old->revision, old->type, NULL, NULL,
NULL, old->dacl, &sd_size);
fnum = cli_nt_create(cli, filename, WRITE_DAC_ACCESS);
#endif
if (fnum == -1) {
printf("cacl_set failed to open %s: %s\n", filename, cli_errstr(cli));
return EXIT_FAILED;