From 541e2942f8dcda970a8b83c7832ea5c09cb38fc8 Mon Sep 17 00:00:00 2001 From: Wilco Baan Hofman Date: Sun, 28 Mar 2010 16:03:12 +0200 Subject: Remove incorrect const, something that was correct in commit 9c3e6249fd984b823a77cab0514601d2a487920a Signed-off-by: Jelmer Vernooij --- source4/lib/registry/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/lib/registry/util.c') diff --git a/source4/lib/registry/util.c b/source4/lib/registry/util.c index 9ccf73790c..56d215cab7 100644 --- a/source4/lib/registry/util.c +++ b/source4/lib/registry/util.c @@ -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; *result = NULL; -- cgit