diff options
author | Günther Deschner <gd@samba.org> | 2013-12-18 17:59:38 +0100 |
---|---|---|
committer | Andreas Schneider <asn@samba.org> | 2014-01-07 16:59:38 +0100 |
commit | 3ef7919e3a0c42cb1fef23d8ec3df945a97d1263 (patch) | |
tree | ef93de2bd69ead05a08d203e454e404f9f7a6f64 /libgpo/gpo_util.c | |
parent | 0a15360f359e1b5780e109646502f044336b212f (diff) | |
download | samba-3ef7919e3a0c42cb1fef23d8ec3df945a97d1263.tar.gz |
libgpo: make gpo_process_a_gpo() static to the util code.
Guenther
Signed-off-by: Günther Deschner <gd@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'libgpo/gpo_util.c')
-rw-r--r-- | libgpo/gpo_util.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libgpo/gpo_util.c b/libgpo/gpo_util.c index 9cba41099bb..13f271de9f9 100644 --- a/libgpo/gpo_util.c +++ b/libgpo/gpo_util.c @@ -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; |