libgpo: make gpo_process_a_gpo() static to the util code.
authorGünther Deschner <gd@samba.org>
Wed, 18 Dec 2013 16:59:38 +0000 (17:59 +0100)
committerAndreas Schneider <asn@samba.org>
Tue, 7 Jan 2014 15:59:38 +0000 (16:59 +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

index 997dbc0b7a135c1ff965d39885781aeedbb73b83..9fcb23077677d66cea912e6e63b7e2f47234c78a 100644 (file)
@@ -226,12 +226,6 @@ void dump_gpo(const struct GROUP_POLICY_OBJECT *gpo,
 void dump_gpo_list(const struct GROUP_POLICY_OBJECT *gpo_list,
                   int debuglevel);
 void dump_gplink(const struct GP_LINK *gp_link);
-NTSTATUS 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);
 NTSTATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx,
                              const struct security_token *token,
                              struct GROUP_POLICY_OBJECT *gpo_list,
index 9cba41099bbad9f6c946e6691cbb9f1d894199c6..13f271de9f949b97faae955a977fc4e52e8a84ef 100644 (file)
@@ -425,12 +425,12 @@ static bool gpo_get_gp_ext_from_gpo(TALLOC_CTX *mem_ctx,
 /****************************************************************
 ****************************************************************/
 
-NTSTATUS 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)
+static NTSTATUS 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)
 {
        struct GP_EXT *gp_ext = NULL;
        int i;