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

Add NT Authority\System as group sid to default registry key security descriptor.

Michael
(This used to be commit 9f0448ca32)
This commit is contained in:
Michael Adam 2008-02-18 16:03:16 +01:00
parent 59e7ee6d7d
commit f3694d50a3

View File

@ -69,7 +69,8 @@ static WERROR construct_registry_sd(TALLOC_CTX *ctx, SEC_DESC **psd)
}
sd = make_sec_desc(ctx, SEC_DESC_REVISION, SEC_DESC_SELF_RELATIVE,
&global_sid_Builtin_Administrators, NULL, NULL, acl,
&global_sid_Builtin_Administrators,
&global_sid_System, NULL, acl,
&sd_size);
if (sd == NULL) {
return WERR_NOMEM;