2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

Comment the places where sdb drivers should be registered and unregistered.

This commit is contained in:
Brian Wellington 2000-11-17 22:09:19 +00:00
parent 5bbed85a33
commit a3c89c5e87

View File

@ -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 <config.h>
@ -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();