summaryrefslogtreecommitdiff
path: root/source4/lib/registry/common/reg_interface.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-04-30 12:52:58 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:51:38 -0500
commit4c991c6edd2a46d7452096ba80c00e7ab4c95924 (patch)
treec994901b6db43e17e893b63913fadc4d50b308f4 /source4/lib/registry/common/reg_interface.c
parentf517d6b7ae5ae0f5865a99f4ba0477738b634466 (diff)
downloadsamba-4c991c6edd2a46d7452096ba80c00e7ab4c95924.tar.gz
samba-4c991c6edd2a46d7452096ba80c00e7ab4c95924.tar.bz2
samba-4c991c6edd2a46d7452096ba80c00e7ab4c95924.zip
r425: add some comments to ugly code parts
we should take care of 'char *' and 'const char *' and DO NOT mix them! Jelmer: please fix this metze (This used to be commit cd609eb2fe9303825d5562047d57fd553b2601bd)
Diffstat (limited to 'source4/lib/registry/common/reg_interface.c')
-rw-r--r--source4/lib/registry/common/reg_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/common/reg_interface.c b/source4/lib/registry/common/reg_interface.c
index fdbb7345d2..3600ab62ea 100644
--- a/source4/lib/registry/common/reg_interface.c
+++ b/source4/lib/registry/common/reg_interface.c
@@ -160,7 +160,6 @@ WERROR reg_open_key(REG_KEY *parent, const char *name, REG_KEY **result)
mem_ctx = talloc_init("mem_ctx");
fullname = talloc_asprintf(mem_ctx, "%s%s%s", parent->path, parent->path[strlen(parent->path)-1] == '\\'?"":"\\", name);
-\
if(!parent->handle->functions->open_key) {
DEBUG(0, ("Registry backend doesn't have get_subkey_by_name nor open_key!\n"));
@@ -432,6 +431,7 @@ WERROR reg_key_add_name_recursive(REG_KEY *parent, const char *path)
{
REG_KEY *cur, *prevcur = parent;
WERROR error;
+ /* FIXME: we should never write to a 'const char *' !!! --metze */
char *begin = (char *)path, *end;
while(1) {