Changeset 745 for trunk/server/libgpo/gpo_util.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/libgpo/gpo_util.c
r414 r745 19 19 #define TALLOC_DEPRECATED 1 20 20 #include "includes.h" 21 #include "system/filesys.h" 21 22 #include "librpc/gen_ndr/ndr_misc.h" 23 #include "../librpc/gen_ndr/ndr_security.h" 24 #include "../libgpo/gpo.h" 25 #include "../libcli/security/security.h" 22 26 #if _SAMBA_BUILD_ == 4 23 #include "system/filesys.h"24 27 #include "auth/auth.h" 25 #include "../libgpo/gpo.h" 26 #include "../lib/talloc/talloc.h" 28 #include <talloc.h> 27 29 #include "source4/libgpo/ads_convenience.h" 28 30 #endif … … 322 324 dump_gp_ext(gp_ext, lvl); 323 325 } 324 325 DEBUGADD(lvl,("security descriptor:\n")); 326 327 NDR_PRINT_DEBUG(security_descriptor, gpo->security_descriptor); 326 if (gpo->security_descriptor) { 327 DEBUGADD(lvl,("security descriptor:\n")); 328 329 NDR_PRINT_DEBUG(security_descriptor, gpo->security_descriptor); 330 } 328 331 } 329 332 … … 447 450 ADS_STATUS gpo_process_a_gpo(ADS_STRUCT *ads, 448 451 TALLOC_CTX *mem_ctx, 449 const NT_USER_TOKEN*token,452 const struct security_token *token, 450 453 struct registry_key *root_key, 451 454 struct GROUP_POLICY_OBJECT *gpo, … … 504 507 static ADS_STATUS gpo_process_gpo_list_by_ext(ADS_STRUCT *ads, 505 508 TALLOC_CTX *mem_ctx, 506 const NT_USER_TOKEN*token,509 const struct security_token *token, 507 510 struct registry_key *root_key, 508 511 struct GROUP_POLICY_OBJECT *gpo_list, … … 542 545 ADS_STATUS gpo_process_gpo_list(ADS_STRUCT *ads, 543 546 TALLOC_CTX *mem_ctx, 544 const NT_USER_TOKEN*token,547 const struct security_token *token, 545 548 struct GROUP_POLICY_OBJECT *gpo_list, 546 549 const char *extensions_guid_filter, … … 839 842 struct loadparm_context *lp_ctx, 840 843 const char *dn, 841 NT_USER_TOKEN**token)842 { 843 NT_USER_TOKEN*ad_token = NULL;844 struct security_token **token) 845 { 846 struct security_token *ad_token = NULL; 844 847 ADS_STATUS status; 845 848 #if _SAMBA_BUILD_ == 4
Note:
See TracChangeset
for help on using the changeset viewer.