diff options
author | Wilco Baan Hofman <wilco@baanhofman.nl> | 2010-05-19 18:58:54 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-06-20 17:19:12 +0200 |
commit | 5434171296e33ffe493995589ae41b123a12d9aa (patch) | |
tree | 6ad1e545d5d64443201d1ae6a1c740e91e6fe95d /source4/lib/policy | |
parent | 31aeddfa4354cbf0e0b562d0dcfe1f41cd95e0f9 (diff) | |
download | samba-5434171296e33ffe493995589ae41b123a12d9aa.tar.gz samba-5434171296e33ffe493995589ae41b123a12d9aa.tar.bz2 samba-5434171296e33ffe493995589ae41b123a12d9aa.zip |
Fix set GPT security descriptor to match windows' behaviour.
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Diffstat (limited to 'source4/lib/policy')
-rw-r--r-- | source4/lib/policy/gp_filesys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/policy/gp_filesys.c b/source4/lib/policy/gp_filesys.c index f44ab0dd54..f6183bd8e1 100644 --- a/source4/lib/policy/gp_filesys.c +++ b/source4/lib/policy/gp_filesys.c @@ -452,7 +452,7 @@ NTSTATUS gp_set_gpt_security_descriptor(struct gp_context *gp_ctx, struct gp_obj /* Set the security descriptor on the directory */ fileinfo.generic.level = RAW_FILEINFO_SEC_DESC; fileinfo.set_secdesc.in.file.fnum = io.ntcreatex.out.file.fnum; - fileinfo.set_secdesc.in.secinfo_flags = SECINFO_OWNER | SECINFO_GROUP | SECINFO_SACL | SECINFO_DACL; + fileinfo.set_secdesc.in.secinfo_flags = SECINFO_PROTECTED_DACL | SECINFO_OWNER | SECINFO_GROUP | SECINFO_DACL; fileinfo.set_secdesc.in.sd = sd; status = smb_raw_setfileinfo(gp_ctx->cli->tree, &fileinfo); if (!NT_STATUS_IS_OK(status)) { |