From c09922cfae1364f2ce8736ae59053805a337658b Mon Sep 17 00:00:00 2001 From: Wilco Baan Hofman Date: Mon, 24 May 2010 20:05:42 +0200 Subject: Code cleanups: GUID generation, lp_dnsdomain instead of lp_realm, missing spaces. Signed-off-by: Jelmer Vernooij --- source4/lib/policy/gp_manage.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'source4/lib/policy/gp_manage.c') diff --git a/source4/lib/policy/gp_manage.c b/source4/lib/policy/gp_manage.c index 968eaf2025..31a3a1cb5f 100644 --- a/source4/lib/policy/gp_manage.c +++ b/source4/lib/policy/gp_manage.c @@ -20,6 +20,7 @@ #include "../libcli/security/dom_sid.h" #include "../libcli/security/security_descriptor.h" #include "../librpc/ndr/libndr.h" +#include "../lib/util/charset/charset.h" #include "param/param.h" #include "lib/policy/policy.h" @@ -117,7 +118,6 @@ NTSTATUS gp_create_gpo (struct gp_context *gp_ctx, const char *display_name, str struct security_descriptor *sd; TALLOC_CTX *mem_ctx; struct gp_object *gpo; - unsigned int i; NTSTATUS status; /* Create a forked memory context, as a base for everything here */ @@ -128,11 +128,8 @@ NTSTATUS gp_create_gpo (struct gp_context *gp_ctx, const char *display_name, str /* Generate a GUID */ guid_struct = GUID_random(); - guid_str = GUID_string(mem_ctx, &guid_struct); - name = talloc_asprintf(gpo, "{%s}", guid_str); - for (i = 0; name[i] != '\0'; i++) { - name[i] = toupper(name[i]); - } + guid_str = GUID_string2(mem_ctx, &guid_struct); + name = strupper_talloc(mem_ctx, guid_str); /* Prepare the GPO struct */ gpo->dn = NULL; @@ -140,7 +137,7 @@ NTSTATUS gp_create_gpo (struct gp_context *gp_ctx, const char *display_name, str gpo->flags = 0; gpo->version = 0; gpo->display_name = talloc_strdup(gpo, display_name); - gpo->file_sys_path = talloc_asprintf(gpo, "\\\\%s\\sysvol\\%s\\Policies\\%s", lp_realm(gp_ctx->lp_ctx), lp_realm(gp_ctx->lp_ctx), name); + gpo->file_sys_path = talloc_asprintf(gpo, "\\\\%s\\sysvol\\%s\\Policies\\%s", lp_dnsdomain(gp_ctx->lp_ctx), lp_dnsdomain(gp_ctx->lp_ctx), name); /* Create the GPT */ status = gp_create_gpt(gp_ctx, name, gpo->file_sys_path); -- cgit