diff options
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/xattr.idl | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/source4/librpc/idl/xattr.idl b/source4/librpc/idl/xattr.idl index 153561ac1a..f292e1fc8f 100644 --- a/source4/librpc/idl/xattr.idl +++ b/source4/librpc/idl/xattr.idl @@ -77,22 +77,21 @@ interface xattr } xattr_DosStreams; - /* we store the NT ACL a DosAcl xattr. It is versioned so we - can later add other acl attribs (such as posix acl - mapping) + /* we store the NT ACL a NTAcl xattr. It is versioned so we + can later add other acl attribs (such as posix acl mapping) we put this xattr in the security namespace to ensure that only trusted users can write to the ACL */ - const string XATTR_DOSACL_NAME = "security.DosAcl"; + const string XATTR_NTACL_NAME = "security.NTAcl"; typedef union { [case(1)] security_descriptor *sd; - } xattr_DosAclInfo; + } xattr_NTACL_Info; typedef [public] struct { uint16 version; - [switch_is(version)] xattr_DosAclInfo info; - } xattr_DosAcl; + [switch_is(version)] xattr_NTACL_Info info; + } xattr_NTACL; } |