libgpo: remove unrequired references to ads_struct.
authorGünther Deschner <gd@samba.org>
Fri, 13 Dec 2013 14:54:42 +0000 (15:54 +0100)
committerAndreas Schneider <asn@samba.org>
Wed, 18 Dec 2013 13:48:24 +0000 (14:48 +0100)
Guenther

Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
libgpo/gpo.h
libgpo/gpo_util.c
source3/utils/net_ads_gpo.c

index 6e677c9c4f4fdcaf26b1eb0f6063ed002a0548a6..72213b81d0b5b08359a6c0064623b4279360671c 100644 (file)
@@ -237,15 +237,13 @@ void dump_gpo_list(ADS_STRUCT *ads,
                   struct GROUP_POLICY_OBJECT *gpo_list,
                   int debuglevel);
 void dump_gplink(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, struct GP_LINK *gp_link);
-ADS_STATUS gpo_process_a_gpo(ADS_STRUCT *ads,
-                            TALLOC_CTX *mem_ctx,
+ADS_STATUS gpo_process_a_gpo(TALLOC_CTX *mem_ctx,
                             const struct security_token *token,
                             struct registry_key *root_key,
                             struct GROUP_POLICY_OBJECT *gpo,
                             const char *extension_guid_filter,
                             uint32_t flags);
-ADS_STATUS gpo_process_gpo_list(ADS_STRUCT *ads,
-                               TALLOC_CTX *mem_ctx,
+ADS_STATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx,
                                const struct security_token *token,
                                struct GROUP_POLICY_OBJECT *gpo_list,
                                const char *extensions_guid_filter,
index 5810e35d6fc5777b69859215cc325d0b2fd413ac..ea08f58f84bdb2e50f1c1020806efdaea880af39 100644 (file)
@@ -443,8 +443,7 @@ static bool gpo_get_gp_ext_from_gpo(TALLOC_CTX *mem_ctx,
 /****************************************************************
 ****************************************************************/
 
-ADS_STATUS gpo_process_a_gpo(ADS_STRUCT *ads,
-                            TALLOC_CTX *mem_ctx,
+ADS_STATUS gpo_process_a_gpo(TALLOC_CTX *mem_ctx,
                             const struct security_token *token,
                             struct registry_key *root_key,
                             struct GROUP_POLICY_OBJECT *gpo,
@@ -500,8 +499,7 @@ ADS_STATUS gpo_process_a_gpo(ADS_STRUCT *ads,
 /****************************************************************
 ****************************************************************/
 
-static ADS_STATUS gpo_process_gpo_list_by_ext(ADS_STRUCT *ads,
-                                             TALLOC_CTX *mem_ctx,
+static ADS_STATUS gpo_process_gpo_list_by_ext(TALLOC_CTX *mem_ctx,
                                              const struct security_token *token,
                                              struct registry_key *root_key,
                                              struct GROUP_POLICY_OBJECT *gpo_list,
@@ -522,7 +520,7 @@ static ADS_STATUS gpo_process_gpo_list_by_ext(ADS_STRUCT *ads,
                 * extension, otherwise we cannot store the e.g. the *list* of
                 * logon-scripts correctly (for more then one GPO) */
 
-               status = gpo_process_a_gpo(ads, mem_ctx, token, root_key,
+               status = gpo_process_a_gpo(mem_ctx, token, root_key,
                                           gpo, extensions_guid, flags);
 
                if (!ADS_ERR_OK(status)) {
@@ -538,8 +536,7 @@ static ADS_STATUS gpo_process_gpo_list_by_ext(ADS_STRUCT *ads,
 /****************************************************************
 ****************************************************************/
 
-ADS_STATUS gpo_process_gpo_list(ADS_STRUCT *ads,
-                               TALLOC_CTX *mem_ctx,
+ADS_STATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx,
                                const struct security_token *token,
                                struct GROUP_POLICY_OBJECT *gpo_list,
                                const char *extensions_guid_filter,
@@ -599,7 +596,7 @@ ADS_STATUS gpo_process_gpo_list(ADS_STRUCT *ads,
                        gp_ext->name, guid_str));
 
 
-               status = gpo_process_gpo_list_by_ext(ads, mem_ctx, token,
+               status = gpo_process_gpo_list_by_ext(mem_ctx, token,
                                                     root_key, gpo_list,
                                                     guid_str, flags);
                if (!ADS_ERR_OK(status)) {
index 7c397e68a05f5160824601ebb08214b55afb67aa..891ecd620a08b853aa5edfec75dc61c2cdfc4348 100644 (file)
@@ -433,7 +433,7 @@ static int net_ads_gpo_apply(struct net_context *c, int argc, const char **argv)
                goto out;
        }
 
-       status = gpo_process_gpo_list(ads, mem_ctx, token, gpo_list,
+       status = gpo_process_gpo_list(mem_ctx, token, gpo_list,
                                      filter, flags);
        if (!ADS_ERR_OK(status)) {
                d_printf("failed to process gpo list: %s\n",