diff options
-rw-r--r-- | source3/lib/util_reg.c | 7 | ||||
-rw-r--r-- | source3/registry/reg_util.c | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/source3/lib/util_reg.c b/source3/lib/util_reg.c index 7c0c42d7d8..6570bb072d 100644 --- a/source3/lib/util_reg.c +++ b/source3/lib/util_reg.c @@ -110,10 +110,3 @@ WERROR reg_pull_multi_sz(TALLOC_CTX *mem_ctx, const void *buf, size_t len, return WERR_OK; } - -void normalize_dbkey(char *key) -{ - size_t len = strlen(key); - string_sub(key, "\\", "/", len+1); - strupper_m(key); -} diff --git a/source3/registry/reg_util.c b/source3/registry/reg_util.c index cd0982d09a..e72353e7c5 100644 --- a/source3/registry/reg_util.c +++ b/source3/registry/reg_util.c @@ -99,6 +99,16 @@ char *normalize_reg_path(TALLOC_CTX *ctx, const char *keyname ) return nkeyname; } +/** + * normalize ther registry path in place. + */ +void normalize_dbkey(char *key) +{ + size_t len = strlen(key); + string_sub(key, "\\", "/", len+1); + strupper_m(key); +} + /********************************************************************** move to next non-delimter character *********************************************************************/ |