From 58af12a20d476666f23971c7376cf4df7b4ee0f7 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Thu, 7 Jan 2010 17:22:44 -0600 Subject: [PATCH] Start bandb on ircd initialization. --- src/ircd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ircd.c b/src/ircd.c index 6a8a3d4..5f4cfc6 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -67,6 +67,7 @@ #include "sslproc.h" #include "chmode.h" #include "privilege.h" +#include "bandbi.h" /* /quote set variables */ struct SetOptions GlobalSetOptions; @@ -677,6 +678,7 @@ main(int argc, char *argv[]) mod_add_path(MODULE_DIR "/autoload"); #endif + init_bandb(); init_ssld(); initialize_server_capabs(); /* Set up default_server_capabs */