summaryrefslogtreecommitdiff
path: root/source4/librpc/idl/xattr.idl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-11-18 03:41:50 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:05:58 -0500
commit82da254ece1e09218d12b478e2164461306499a3 (patch)
tree85552dae9a90a6b6500fb06b4e3bfb47b2379535 /source4/librpc/idl/xattr.idl
parentbc7b4abc3a85e78a73d401345265b2c022f0f04d (diff)
downloadsamba-82da254ece1e09218d12b478e2164461306499a3.tar.gz
samba-82da254ece1e09218d12b478e2164461306499a3.tar.bz2
samba-82da254ece1e09218d12b478e2164461306499a3.zip
r3833: NTACL is a better xattr name than DosAcl (tpot suggested this)
(This used to be commit 17911eea5995c12a2300dd3928612c77f8f0883e)
Diffstat (limited to 'source4/librpc/idl/xattr.idl')
-rw-r--r--source4/librpc/idl/xattr.idl13
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;
}