summaryrefslogtreecommitdiff
path: root/source3/librpc/idl
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2007-10-09 16:22:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:31:16 -0500
commit07cbec10b1f7c43535c2dcedb627e0faefdf4b9a (patch)
treea6ae943c1d90a75d169290a38f4ff1eafbb38e2e /source3/librpc/idl
parent5de28a07cc3195d13626a3bf4579a565dcf8b9d1 (diff)
downloadsamba-07cbec10b1f7c43535c2dcedb627e0faefdf4b9a.tar.gz
samba-07cbec10b1f7c43535c2dcedb627e0faefdf4b9a.tar.bz2
samba-07cbec10b1f7c43535c2dcedb627e0faefdf4b9a.zip
r25593: Add missing security_secinfo bits as seen while managing security descriptor
inheritance with regedit. Guenther (This used to be commit 534ee13596cd4d95b61ae973823b3041bd889216)
Diffstat (limited to 'source3/librpc/idl')
-rw-r--r--source3/librpc/idl/security.idl6
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/librpc/idl/security.idl b/source3/librpc/idl/security.idl
index 8bf5e6f867..8a0d36a696 100644
--- a/source3/librpc/idl/security.idl
+++ b/source3/librpc/idl/security.idl
@@ -350,6 +350,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;
}