From 6fc40ce0d3b1bdfe9a138db4953896f47094424e Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Mon, 20 Apr 2009 23:38:11 +0200 Subject: libgpo: fix the build of gpext plugins. Guenther --- source3/libgpo/gpext/registry.c | 3 ++- source3/libgpo/gpext/scripts.c | 6 +++--- source3/libgpo/gpext/security.c | 10 +++++----- 3 files changed, 10 insertions(+), 9 deletions(-) (limited to 'source3/libgpo') diff --git a/source3/libgpo/gpext/registry.c b/source3/libgpo/gpext/registry.c index 0a0dd9bc0e..ae2adcc90d 100644 --- a/source3/libgpo/gpext/registry.c +++ b/source3/libgpo/gpext/registry.c @@ -18,6 +18,7 @@ */ #include "includes.h" +#include "../libgpo/gpo_ini.h" #define GP_EXT_NAME "registry" @@ -534,7 +535,7 @@ static NTSTATUS registry_process_group_policy(ADS_STRUCT *ads, debug_gpext_header(0, "registry_process_group_policy", flags, gpo, extension_guid, snapin_guid); - status = gpo_get_unix_path(mem_ctx, gpo, &unix_path); + status = gpo_get_unix_path(mem_ctx, cache_path(GPO_CACHE_DIR), gpo, &unix_path); NT_STATUS_NOT_OK_RETURN(status); status = reg_parse_registry(mem_ctx, diff --git a/source3/libgpo/gpext/scripts.c b/source3/libgpo/gpext/scripts.c index 4ced3abda5..43f9b3afb5 100644 --- a/source3/libgpo/gpext/scripts.c +++ b/source3/libgpo/gpext/scripts.c @@ -130,9 +130,9 @@ static NTSTATUS scripts_parse_ini_section(struct gp_inifile_context *ini_ctx, while (1) { const char *key = NULL; - const char *script = NULL; + char *script = NULL; const char *count = NULL; - const char *parameters = NULL; + char *parameters = NULL; count = talloc_asprintf(ini_ctx->mem_ctx, "%d", i); NT_STATUS_HAVE_NO_MEMORY(count); @@ -354,7 +354,7 @@ static NTSTATUS scripts_process_group_policy(ADS_STRUCT *ads, debug_gpext_header(0, "scripts_process_group_policy", flags, gpo, extension_guid, snapin_guid); - status = gpo_get_unix_path(mem_ctx, gpo, &unix_path); + status = gpo_get_unix_path(mem_ctx, cache_path(GPO_CACHE_DIR), gpo, &unix_path); NT_STATUS_NOT_OK_RETURN(status); status = gp_inifile_init_context(mem_ctx, flags, unix_path, diff --git a/source3/libgpo/gpext/security.c b/source3/libgpo/gpext/security.c index 8adeb59ead..f0a52fda5d 100644 --- a/source3/libgpo/gpext/security.c +++ b/source3/libgpo/gpext/security.c @@ -59,9 +59,9 @@ struct gpttmpl_table { static NTSTATUS gpttmpl_parse_header(struct gp_inifile_context *ini_ctx, uint32_t *version_out) { - const char *signature = NULL; + char *signature = NULL; NTSTATUS result; - uint32_t version; + int version; int is_unicode; if (!ini_ctx) { @@ -79,7 +79,7 @@ static NTSTATUS gpttmpl_parse_header(struct gp_inifile_context *ini_ctx, } result = gp_inifile_getint(ini_ctx, GPTTMPL_SECTION_VERSION ":"GPTTMPL_PARAMETER_REVISION, &version); - if (!NT_STATUS_IS_OK(result)) + if (!NT_STATUS_IS_OK(result)) { return NT_STATUS_INTERNAL_DB_CORRUPTION; } @@ -88,7 +88,7 @@ static NTSTATUS gpttmpl_parse_header(struct gp_inifile_context *ini_ctx, } result = gp_inifile_getint(ini_ctx, GPTTMPL_SECTION_UNICODE - ":"GPTTMPL_PARAMETER_UNICODE, is_unicode); + ":"GPTTMPL_PARAMETER_UNICODE, &is_unicode); if (!NT_STATUS_IS_OK(result) || !is_unicode) { return NT_STATUS_INTERNAL_DB_CORRUPTION; } @@ -157,7 +157,7 @@ static NTSTATUS security_process_group_policy(ADS_STRUCT *ads, /* this handler processes the gpttmpl files and merge output to the * registry */ - status = gpo_get_unix_path(mem_ctx, gpo, &unix_path); + status = gpo_get_unix_path(mem_ctx, cache_path(GPO_CACHE_DIR), gpo, &unix_path); if (!NT_STATUS_IS_OK(status)) { goto out; } -- cgit