From: Jeremy Allison Date: Wed, 10 Sep 2008 23:22:51 +0000 (-0700) Subject: Fix bug #5052 - not work cancel inheritance on share. We were X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d824d7188518aaa7b4e890885e6bc42e94397c5;p=thirdparty%2Fsamba.git Fix bug #5052 - not work cancel inheritance on share. We were using the parent security descriptor type and flags instead of using the passed in SD. Jeremy. --- diff --git a/source/smbd/posix_acls.c b/source/smbd/posix_acls.c index 427cfc9a0d3..7479aea0762 100644 --- a/source/smbd/posix_acls.c +++ b/source/smbd/posix_acls.c @@ -3398,10 +3398,17 @@ static NTSTATUS append_parent_acl(files_struct *fsp, parent_name)); } - parent_sd->dacl->aces = new_ace; - parent_sd->dacl->num_aces = i; + /* This sucks. psd should be const and we should + * be doing a deep-copy here. We're getting away + * with is as we know parent_sd is talloced off + * talloc_tos() as well as psd. JRA. */ - *pp_new_sd = parent_sd; + psd->dacl->aces = new_ace; + psd->dacl->num_aces = i; + psd->type &= ~(SE_DESC_DACL_AUTO_INHERITED| + SE_DESC_DACL_AUTO_INHERIT_REQ); + + *pp_new_sd = psd; return status; }