diff options
author | Andrew Bartlett <abartlet@samba.org> | 2013-04-14 19:51:42 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2013-05-09 06:18:21 +0200 |
commit | 7874a431541e10a1846fe3732568496b2b753de1 (patch) | |
tree | 4a5e50e6807f14035dd4db9e1ba917581616745e /librpc | |
parent | a0d16850393f59fef4883fb5fa6c97ec4b2af2c2 (diff) | |
download | samba-7874a431541e10a1846fe3732568496b2b753de1.tar.gz samba-7874a431541e10a1846fe3732568496b2b753de1.tar.bz2 samba-7874a431541e10a1846fe3732568496b2b753de1.zip |
librpc: Add special owner/group/other constants to nfs4acl.idl
As per nfs4acl-0.9/lib/nfs4acl.c (the package where this structure is originally defined)
Andrew Bartlett
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/nfs4acl.idl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/librpc/idl/nfs4acl.idl b/librpc/idl/nfs4acl.idl index 3d4379ad5e..aeab0a0d10 100644 --- a/librpc/idl/nfs4acl.idl +++ b/librpc/idl/nfs4acl.idl @@ -15,6 +15,10 @@ interface nfs4acl { const char *NFS4ACL_XATTR_NAME = "system.nfs4acl"; + const char *NFS4ACL_XATTR_OWNER_WHO = "OWNER@"; + const char *NFS4ACL_XATTR_GROUP_WHO = "GROUP@"; + const char *NFS4ACL_XATTR_EVERYONE_WHO = "EVERYONE@"; + /* these structures use the same bit values and other constants as in security.idl */ typedef [flag(NDR_BIG_ENDIAN)] struct { |