diff options
author | Günther Deschner <gd@samba.org> | 2007-10-09 16:26:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:08:01 -0500 |
commit | 21a7a9639c2ca270289c14c2ba30c1ec261b6d38 (patch) | |
tree | d90c41e33359c2c4ba588dd77242dc65ee234958 /source4/librpc | |
parent | 397a0aaa43681114500f28f4950f0b88b7cde6d3 (diff) | |
download | samba-21a7a9639c2ca270289c14c2ba30c1ec261b6d38.tar.gz samba-21a7a9639c2ca270289c14c2ba30c1ec261b6d38.tar.bz2 samba-21a7a9639c2ca270289c14c2ba30c1ec261b6d38.zip |
r25594: Merge from 3_2:
"Add missing security_secinfo bits as seen while managing security descriptor
inheritance with regedit."
Guenther
(This used to be commit 1c1811c5e34b18f448beb544de0c5f8612653293)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/security.idl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/librpc/idl/security.idl b/source4/librpc/idl/security.idl index 4e0263785b..753fad85cf 100644 --- a/source4/librpc/idl/security.idl +++ b/source4/librpc/idl/security.idl @@ -374,6 +374,10 @@ interface security SECINFO_OWNER = 0x00000001, SECINFO_GROUP = 0x00000002, SECINFO_DACL = 0x00000004, - SECINFO_SACL = 0x00000008 + SECINFO_SACL = 0x00000008, + SECINFO_UNPROTECTED_SACL = 0x10000000, + SECINFO_UNPROTECTED_DACL = 0x20000000, + SECINFO_PROTECTED_SACL = 0x40000000, + SECINFO_PROTECTED_DACL = 0x80000000 } security_secinfo; } |