summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/registry/reg_backend_db.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/registry/reg_backend_db.c b/source3/registry/reg_backend_db.c
index 95cca029c4..6bd8d375fb 100644
--- a/source3/registry/reg_backend_db.c
+++ b/source3/registry/reg_backend_db.c
@@ -739,11 +739,10 @@ int regdb_fetch_keys(const char *key, REGSUBKEY_CTR *ctr)
}
/* convert to key format */
- path = talloc_string_sub(frame, path, "\\", "/");
+ path = normalize_reg_path(frame, path);
if (!path) {
goto fail;
}
- strupper_m(path);
ctr->seqnum = regdb_get_seqnum();