From 9c3e6249fd984b823a77cab0514601d2a487920a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Matthias=20Dieter=20Walln=C3=B6fer?= Date: Mon, 22 Mar 2010 19:53:23 +0100 Subject: [PATCH] s4:registry - "util" - remove "const" from "reg_abs_path" Here it's not really needed --- source4/lib/registry/util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source4/lib/registry/util.c b/source4/lib/registry/util.c index 8c855c25ed4..47568b135eb 100644 --- a/source4/lib/registry/util.c +++ b/source4/lib/registry/util.c @@ -211,7 +211,7 @@ WERROR reg_open_key_abs(TALLOC_CTX *mem_ctx, struct registry_context *handle, static WERROR get_abs_parent(TALLOC_CTX *mem_ctx, struct registry_context *ctx, const char *path, struct registry_key **parent, - const char **name) + char **name) { char *parent_name; WERROR error; @@ -238,7 +238,7 @@ WERROR reg_key_del_abs(TALLOC_CTX *mem_ctx, struct registry_context *ctx, const char *path) { struct registry_key *parent; - const char *n; + char *n; WERROR error; if (!strchr(path, '\\')) { @@ -262,7 +262,7 @@ WERROR reg_key_add_abs(TALLOC_CTX *mem_ctx, struct registry_context *ctx, struct registry_key **result) { struct registry_key *parent; - const char *n; + char *n; WERROR error; if (!strchr(path, '\\')) { -- 2.11.4.GIT