summaryrefslogtreecommitdiff
path: root/source3/registry/reg_frontend.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-20 03:39:27 +0100
committerMichael Adam <obnox@samba.org>2008-01-20 03:47:37 +0100
commitc16b74cc861c031fda34ea131dadc9d4e175a8ed (patch)
tree87d200f8d0568bf29e5059d44857b328da50ecb6 /source3/registry/reg_frontend.c
parentc4b65647ca551eeb87ec31579eda9ebf79fdceed (diff)
downloadsamba-c16b74cc861c031fda34ea131dadc9d4e175a8ed.tar.gz
samba-c16b74cc861c031fda34ea131dadc9d4e175a8ed.tar.bz2
samba-c16b74cc861c031fda34ea131dadc9d4e175a8ed.zip
Add a registry backend perflib that replaces the former dynamic overlay.
Michael (This used to be commit c3fba415951329ee90c7250b4e8d539f91b227f6)
Diffstat (limited to 'source3/registry/reg_frontend.c')
-rw-r--r--source3/registry/reg_frontend.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/registry/reg_frontend.c b/source3/registry/reg_frontend.c
index d489050904..9a35eb2263 100644
--- a/source3/registry/reg_frontend.c
+++ b/source3/registry/reg_frontend.c
@@ -33,6 +33,7 @@ extern REGISTRY_OPS prod_options_reg_ops;
extern REGISTRY_OPS tcpip_params_reg_ops;
extern REGISTRY_OPS hkpt_params_reg_ops;
extern REGISTRY_OPS current_version_reg_ops;
+extern REGISTRY_OPS perflib_reg_ops;
extern REGISTRY_OPS regdb_ops; /* these are the default */
/* array of REGISTRY_HOOK's which are read into a tree for easy access */
@@ -50,6 +51,7 @@ REGISTRY_HOOK reg_hooks[] = {
{ KEY_TCPIP_PARAMS, &tcpip_params_reg_ops },
{ KEY_HKPT, &hkpt_params_reg_ops },
{ KEY_CURRENT_VERSION, &current_version_reg_ops },
+ { KEY_PERFLIB, &perflib_reg_ops },
#endif
{ NULL, NULL }
};