Skip to content

Commit

Permalink
libgpo: make gpo_process_a_gpo() static to the util code.
Browse files Browse the repository at this point in the history
Guenther

Signed-off-by: Günther Deschner <[email protected]>
Reviewed-by: Andreas Schneider <[email protected]>
  • Loading branch information
gd authored and cryptomilk committed Jan 7, 2014
1 parent 0a15360 commit 3ef7919
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
6 changes: 0 additions & 6 deletions libgpo/gpo.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
12 changes: 6 additions & 6 deletions libgpo/gpo_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3ef7919

Please sign in to comment.