diff options
Diffstat (limited to 'libgpo')
-rw-r--r-- | libgpo/gpo.h | 3 | ||||
-rw-r--r-- | libgpo/gpo_util.c | 7 |
2 files changed, 6 insertions, 4 deletions
diff --git a/libgpo/gpo.h b/libgpo/gpo.h index f32b7399986..4f856fd8f08 100644 --- a/libgpo/gpo.h +++ b/libgpo/gpo.h @@ -228,7 +228,8 @@ void dump_gpo_list(const struct GROUP_POLICY_OBJECT *gpo_list, void dump_gplink(const struct GP_LINK *gp_link); NTSTATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx, const struct security_token *token, - struct GROUP_POLICY_OBJECT *gpo_list, + const struct GROUP_POLICY_OBJECT *deleted_gpo_list, + const struct GROUP_POLICY_OBJECT *changed_gpo_list, const char *extensions_guid_filter, uint32_t flags); NTSTATUS check_refresh_gpo(ADS_STRUCT *ads, diff --git a/libgpo/gpo_util.c b/libgpo/gpo_util.c index b654d4ad584..4d87eb3afca 100644 --- a/libgpo/gpo_util.c +++ b/libgpo/gpo_util.c @@ -427,7 +427,8 @@ bool gpo_get_gp_ext_from_gpo(TALLOC_CTX *mem_ctx, NTSTATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx, const struct security_token *token, - struct GROUP_POLICY_OBJECT *gpo_list, + const struct GROUP_POLICY_OBJECT *deleted_gpo_list, + const struct GROUP_POLICY_OBJECT *changed_gpo_list, const char *extensions_guid_filter, uint32_t flags) { @@ -455,8 +456,8 @@ NTSTATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx, status = gpext_process_extension(mem_ctx, flags, token, root_key, - NULL, - gpo_list, + deleted_gpo_list, + changed_gpo_list, extensions_guid_filter); talloc_free(reg_ctx); talloc_free(root_key); |