summaryrefslogtreecommitdiffstats
path: root/source3/registry/reg_cachehook.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-02-07 15:45:42 +0100
committerVolker Lendecke <vl@samba.org>2010-02-13 13:26:11 +0100
commit22607320841100148dbaed17983be7703d2172b1 (patch)
treedb61493e040208160d03295966a25f099429ea32 /source3/registry/reg_cachehook.c
parentceebed6ce19a5821b01a30f6ebc47871b27b413a (diff)
downloadsamba-22607320841100148dbaed17983be7703d2172b1.tar.gz
samba-22607320841100148dbaed17983be7703d2172b1.tar.xz
samba-22607320841100148dbaed17983be7703d2172b1.zip
s3: SORTED_TREE -> struct sorted_tree
Diffstat (limited to 'source3/registry/reg_cachehook.c')
-rw-r--r--source3/registry/reg_cachehook.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/registry/reg_cachehook.c b/source3/registry/reg_cachehook.c
index 4f84de52860..57097c1ddd2 100644
--- a/source3/registry/reg_cachehook.c
+++ b/source3/registry/reg_cachehook.c
@@ -25,7 +25,7 @@
#undef DBGC_CLASS
#define DBGC_CLASS DBGC_REGISTRY
-static SORTED_TREE *cache_tree = NULL;
+static struct sorted_tree *cache_tree = NULL;
extern struct registry_ops regdb_ops; /* these are the default */
static WERROR keyname_to_path(TALLOC_CTX *mem_ctx, const char *keyname,
@@ -76,7 +76,7 @@ WERROR reghook_cache_init(void)
/**********************************************************************
Add a new registry hook to the cache. Note that the keyname
- is not in the exact format that a SORTED_TREE expects.
+ is not in the exact format that a struct sorted_tree expects.
*********************************************************************/
WERROR reghook_cache_add(const char *keyname, struct registry_ops *ops)