From a3c89c5e87aa257ec1b12f75dba201db86997007 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Fri, 17 Nov 2000 22:09:19 +0000 Subject: [PATCH] Comment the places where sdb drivers should be registered and unregistered. --- bin/named/main.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/bin/named/main.c b/bin/named/main.c index 3673894767..333a33f863 100644 --- a/bin/named/main.c +++ b/bin/named/main.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: main.c,v 1.93 2000/11/15 02:11:47 tale Exp $ */ +/* $Id: main.c,v 1.94 2000/11/17 22:09:19 bwelling Exp $ */ #include @@ -490,6 +490,10 @@ setup(void) { ns_main_earlyfatal("create_managers() failed: %s", isc_result_totext(result)); + /* + * Add calls to register sdb drivers here. + */ + ns_server_create(ns_g_mctx, &ns_g_server); if (!ns_g_lwresdonly) { @@ -506,6 +510,10 @@ cleanup(void) { ns_server_destroy(&ns_g_server); + /* + * Add calls to unregister sdb drivers here. + */ + isc_log_write(ns_g_lctx, NS_LOGCATEGORY_GENERAL, NS_LOGMODULE_MAIN, ISC_LOG_NOTICE, "exiting"); ns_log_shutdown();