Changeset 740 for vendor/current/libgpo/gpo_sec.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/libgpo/gpo_sec.c
r414 r740 19 19 20 20 #include "includes.h" 21 #include "libcli/security/dom_sid.h" 21 #include "libcli/security/security.h" 22 #include "../libgpo/gpo.h" 23 #include "auth.h" 24 #include "../librpc/ndr/libndr.h" 22 25 #if _SAMBA_BUILD_ == 4 23 26 #include "libgpo/ads_convenience.h" … … 25 28 #include "librpc/gen_ndr/ndr_misc.h" 26 29 #include "../libcli/security/secace.h" 27 #include "../libgpo/gpo.h"28 30 #endif 29 31 … … 102 104 103 105 static NTSTATUS gpo_sd_check_ace_denied_object(const struct security_ace *ace, 104 const NT_USER_TOKEN*token)106 const struct security_token *token) 105 107 { 106 108 char *sid_str; … … 124 126 125 127 static NTSTATUS gpo_sd_check_ace_allowed_object(const struct security_ace *ace, 126 const NT_USER_TOKEN*token)128 const struct security_token *token) 127 129 { 128 130 char *sid_str; … … 147 149 148 150 static NTSTATUS gpo_sd_check_ace(const struct security_ace *ace, 149 const NT_USER_TOKEN*token)151 const struct security_token *token) 150 152 { 151 153 switch (ace->type) { … … 163 165 164 166 NTSTATUS gpo_apply_security_filtering(const struct GROUP_POLICY_OBJECT *gpo, 165 const NT_USER_TOKEN*token)167 const struct security_token *token) 166 168 { 167 169 struct security_descriptor *sd = gpo->security_descriptor;
Note:
See TracChangeset
for help on using the changeset viewer.