summaryrefslogtreecommitdiff
path: root/source3/registry/reg_frontend.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-01-19 23:46:13 +0100
committerMichael Adam <obnox@samba.org>2008-01-20 02:03:40 +0100
commitc5a5b404b43817525590aa924f1762824f49d156 (patch)
tree4cb8827e1b7ed0a6ef23d46745246440bb86fade /source3/registry/reg_frontend.c
parentf383b853f58d54352332a60e6f0842dfd41f5ff0 (diff)
downloadsamba-c5a5b404b43817525590aa924f1762824f49d156.tar.gz
samba-c5a5b404b43817525590aa924f1762824f49d156.tar.bz2
samba-c5a5b404b43817525590aa924f1762824f49d156.zip
Add a registry backend tcpip_params that replaces the former dynamic overlay.
Michael (This used to be commit a8a743b693a162954948ca2438ce4b842c5cba30)
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 32ec7f9a87..6ecc8011e4 100644
--- a/source3/registry/reg_frontend.c
+++ b/source3/registry/reg_frontend.c
@@ -30,6 +30,7 @@ extern REGISTRY_OPS shares_reg_ops;
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 regdb_ops; /* these are the default */
/* array of REGISTRY_HOOK's which are read into a tree for easy access */
@@ -44,6 +45,7 @@ REGISTRY_HOOK reg_hooks[] = {
{ KEY_SMBCONF, &smbconf_reg_ops },
{ KEY_NETLOGON_PARAMS, &netlogon_params_reg_ops },
{ KEY_PROD_OPTIONS, &prod_options_reg_ops },
+ { KEY_TCPIP_PARAMS, &tcpip_params_reg_ops },
#endif
{ NULL, NULL }
};