diff options
author | midipix <writeonce@midipix.org> | 2018-10-12 13:35:22 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-10-12 13:59:03 -0400 |
commit | a399853c13f8cd00de6e9b4afbe776de36a4be65 (patch) | |
tree | 18fb1881ec0ac36051314f28f62a87f335b1ccc3 | |
parent | 5c3887a3ebe7ea024d60e986e1c52dc7d891b573 (diff) | |
download | ntapi-a399853c13f8cd00de6e9b4afbe776de36a4be65.tar.bz2 ntapi-a399853c13f8cd00de6e9b4afbe776de36a4be65.tar.xz |
__acl_init_common_meta_impl(): report the system account assigned permissions.
-rw-r--r-- | src/acl/ntapi_acl_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/acl/ntapi_acl_helper.c b/src/acl/ntapi_acl_helper.c index 6940f90..9d24554 100644 --- a/src/acl/ntapi_acl_helper.c +++ b/src/acl/ntapi_acl_helper.c @@ -241,7 +241,7 @@ static int32_t __acl_init_common_meta_strict( meta->other_sid = m.other_sid; meta->admin_ace = m.admin_ace; meta->admin_sid = m.admin_sid; - meta->system_acc = 0; + meta->system_acc = m.system_acc; return NT_STATUS_SUCCESS; } |