diff options
author | Günther Deschner <gd@samba.org> | 2013-12-19 17:29:10 +0100 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2014-01-07 16:59:39 +0100 |
commit | c3f9d9929c494e9f750e0fd02443cc645ca1bba8 (patch) | |
tree | 509d37dd9fe21f00693dd6c944c12b92d25a274a /libgpo/gpo.h | |
parent | a78b4d4f65e05ad73ed59713f1ce323d176e7b8c (diff) | |
download | samba-c3f9d9929c494e9f750e0fd02443cc645ca1bba8.tar.gz |
libgpo: allow to pass down a list of deleted GPOs in gpo_process_gpo_list().
Guenther
Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'libgpo/gpo.h')
-rw-r--r-- | libgpo/gpo.h | 3 |
1 files changed, 2 insertions, 1 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, |