summaryrefslogtreecommitdiff
path: root/src/init.c
diff options
context:
space:
mode:
authortrystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-10-07 05:32:21 +0000
committertrystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2004-10-07 05:32:21 +0000
commitb1e78499cbd4e3855c54abc355be19e62502ac52 (patch)
tree978400028654a1fa070770b7fd27274dca5f06d2 /src/init.c
parenta7b79e36cd487faad8696a1c4a86e301b5965a74 (diff)
BUILD : 1.7.5 (376) BUGS : N/A NOTES : CS INFO - DrStein, init.c typo - DrStein, Bahamut +j support - TSL, more protocol clean up
git-svn-id: svn://svn.anope.org/anope/trunk@376 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@246 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/init.c')
-rw-r--r--src/init.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/init.c b/src/init.c
index 486c54e82..7843e9d77 100644
--- a/src/init.c
+++ b/src/init.c
@@ -591,35 +591,35 @@ int init(int ac, char **av)
if (!skeleton) {
load_ns_dbase();
if (debug)
- alog("debug: Loaded %s database (1/9)", s_NickServ);
+ alog("debug: Loaded %s database (1/8)", s_NickServ);
if (s_HostServ) {
load_hs_dbase();
if (debug)
- alog("debug: Loaded %s database (2/9)", s_HostServ);
+ alog("debug: Loaded %s database (2/8)", s_HostServ);
}
if (s_BotServ) {
load_bs_dbase();
if (debug)
- alog("debug: Loaded %s database (3/9)", s_BotServ);
+ alog("debug: Loaded %s database (3/8)", s_BotServ);
} else if (debug)
- alog("debug: BotServ database (4/9) not loaded because BotServ is disabled");
+ alog("debug: BotServ database (3/8) not loaded because BotServ is disabled");
load_cs_dbase();
if (debug)
- alog("debug: Loaded %s database (5/9)", s_ChanServ);
+ alog("debug: Loaded %s database (4/8)", s_ChanServ);
}
load_os_dbase();
if (debug)
- alog("debug: Loaded %s database (6/9)", s_OperServ);
+ alog("debug: Loaded %s database (5/8)", s_OperServ);
load_news();
if (debug)
- alog("debug: Loaded news database (7/9)");
+ alog("debug: Loaded news database (6/8)");
load_exceptions();
if (debug)
- alog("debug: Loaded exception database (8/9)");
+ alog("debug: Loaded exception database (7/8)");
if (PreNickDBName) {
load_ns_req_db();
if (debug)
- alog("debug: Loaded PreNick database (9/9)");
+ alog("debug: Loaded PreNick database (8/8)");
}
#ifdef USE_RDB
}