summaryrefslogtreecommitdiff
path: root/source3/utils/net_registry_util.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-04-04 17:24:53 +0200
committerMichael Adam <obnox@samba.org>2008-04-04 17:24:53 +0200
commitae790f9b89779a0fa1ba4ecfb5b99df160d222fd (patch)
tree990e50a84f6dae480867d93eb6cf212f5d4c7fe7 /source3/utils/net_registry_util.h
parent65088387c061aebd8a847857a5fc87ca7a9257f3 (diff)
downloadsamba-ae790f9b89779a0fa1ba4ecfb5b99df160d222fd.tar.gz
samba-ae790f9b89779a0fa1ba4ecfb5b99df160d222fd.tar.bz2
samba-ae790f9b89779a0fa1ba4ecfb5b99df160d222fd.zip
net: change split_hive_key() to properly allocate subkeyname
instead of returning a pointer into another string. Michael (This used to be commit 68d08ecf92be3444b759300237b2b7cf5238d022)
Diffstat (limited to 'source3/utils/net_registry_util.h')
-rw-r--r--source3/utils/net_registry_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_registry_util.h b/source3/utils/net_registry_util.h
index 5438f39946..13ec6ebfcd 100644
--- a/source3/utils/net_registry_util.h
+++ b/source3/utils/net_registry_util.h
@@ -34,6 +34,6 @@ void print_registry_value(const char *valname,
* - strip trailing '\\' chars
*/
WERROR split_hive_key(TALLOC_CTX *ctx, const char *path, char **hivename,
- const char **subkeyname);
+ char **subkeyname);
#endif