1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

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 1c1811c5e3)
This commit is contained in:
Günther Deschner 2007-10-09 16:26:11 +00:00 committed by Gerald (Jerry) Carter
parent 397a0aaa43
commit 21a7a9639c

View File

@ -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;
}