diff options
author | Michael Adam <obnox@samba.org> | 2008-01-20 01:00:14 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-01-20 02:03:40 +0100 |
commit | 949a88ee2f1163605a73a28920190c11c25e4609 (patch) | |
tree | 2eb6f900d650a732ea8c46a7c675d966a93c0ded /source3/registry/reg_frontend.c | |
parent | b4e3c752722f6e7d143caa810ce0f8eb9c8d12c9 (diff) | |
download | samba-949a88ee2f1163605a73a28920190c11c25e4609.tar.gz samba-949a88ee2f1163605a73a28920190c11c25e4609.tar.bz2 samba-949a88ee2f1163605a73a28920190c11c25e4609.zip |
Add a registry backend hkpt_params that replaces the former dynamic overlay.
Michael
(This used to be commit 8e8bb6ba120adf9942f612b7fd89bdbced6c1285)
Diffstat (limited to 'source3/registry/reg_frontend.c')
-rw-r--r-- | source3/registry/reg_frontend.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/registry/reg_frontend.c b/source3/registry/reg_frontend.c index 6ecc8011e4..9539c2ba2f 100644 --- a/source3/registry/reg_frontend.c +++ b/source3/registry/reg_frontend.c @@ -31,6 +31,7 @@ extern REGISTRY_OPS smbconf_reg_ops; extern REGISTRY_OPS netlogon_params_reg_ops; extern REGISTRY_OPS prod_options_reg_ops; extern REGISTRY_OPS tcpip_params_reg_ops; +extern REGISTRY_OPS hkpt_params_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 */ @@ -46,6 +47,7 @@ REGISTRY_HOOK reg_hooks[] = { { KEY_NETLOGON_PARAMS, &netlogon_params_reg_ops }, { KEY_PROD_OPTIONS, &prod_options_reg_ops }, { KEY_TCPIP_PARAMS, &tcpip_params_reg_ops }, + { KEY_HKPT, &hkpt_params_reg_ops }, #endif { NULL, NULL } }; |