From 1a340869c43f9ce741e8a4bd28ea01ec63301df5 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 14 Dec 2004 20:49:18 +0000 Subject: r4204: Arguments to reg_del_key more like the RPC for more efficient usage Fix small bug in regpatch Fix segfault in regshell cmdline completion Implement set_value and del_value in ldb backend (This used to be commit 8e2aa58abeafa78afe7dafb9723f5f365e756527) --- source4/include/registry.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/include') diff --git a/source4/include/registry.h b/source4/include/registry.h index 5865636836..e2f8bc087a 100644 --- a/source4/include/registry.h +++ b/source4/include/registry.h @@ -131,11 +131,11 @@ struct hive_operations { /* Key management */ WERROR (*add_key)(TALLOC_CTX *, struct registry_key *, const char *name, uint32_t access_mask, SEC_DESC *, struct registry_key **); - WERROR (*del_key)(struct registry_key *); + WERROR (*del_key)(struct registry_key *, const char *name); WERROR (*flush_key) (struct registry_key *); /* Value management */ - WERROR (*set_value)(struct registry_key *, const char *name, int type, void *data, int len); + WERROR (*set_value)(struct registry_key *, const char *name, uint32 type, void *data, int len); WERROR (*del_value)(struct registry_key *, const char *valname); }; -- cgit