summaryrefslogtreecommitdiff
path: root/libgpo/gpo_util.c
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2013-12-18 15:43:23 +0100
committerAndreas Schneider <asn@samba.org>2014-01-07 16:59:38 +0100
commitc39425f14bd58537aed1079335a62bbac8af7fb6 (patch)
treef82cc9d62ae4a0a4700271234d1bdb162eed9bf4 /libgpo/gpo_util.c
parent69997e2911e1c720fc5b87dae24b9a9c82b87eb7 (diff)
downloadsamba-c39425f14bd58537aed1079335a62bbac8af7fb6.tar.gz
libgpo: prefix some more calls with gpext_.
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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgpo/gpo_util.c b/libgpo/gpo_util.c
index 7378cfcd6e6..8689f2c4cd7 100644
--- a/libgpo/gpo_util.c
+++ b/libgpo/gpo_util.c
@@ -549,12 +549,12 @@ NTSTATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx,
struct gp_registry_context *reg_ctx = NULL;
WERROR werr;
- status = init_gp_extensions(mem_ctx);
+ status = gpext_init_gp_extensions(mem_ctx);
if (!NT_STATUS_IS_OK(status)) {
return status;
}
- gp_ext_list = get_gp_extension_list();
+ gp_ext_list = gpext_get_gp_extension_list();
if (!gp_ext_list) {
return NT_STATUS_DLL_INIT_FAILED;
}
@@ -607,7 +607,7 @@ NTSTATUS gpo_process_gpo_list(TALLOC_CTX *mem_ctx,
done:
talloc_free(reg_ctx);
talloc_free(root_key);
- free_gp_extensions();
+ gpext_free_gp_extensions();
return status;
}