diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-04 15:37:10 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2012-11-04 15:37:10 +0000 |
commit | 90aeacbf12d63dcd628caed461bd744639603d76 (patch) | |
tree | 5eb5c2aa3fd576ac33d84d2911482a3f200c1bea /src/ircd.c | |
parent | 8daa0e2a6fe61e95dc2dd145ebbdb2b05c097196 (diff) |
- Initial rewrite of the configuration subsystem
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1632 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src/ircd.c')
-rw-r--r-- | src/ircd.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -36,6 +36,7 @@ #include "ircd_signal.h" #include "s_gline.h" #include "motd.h" +#include "conf.h" #include "hostmask.h" #include "numeric.h" #include "packet.h" @@ -45,7 +46,6 @@ #include "rng_mt.h" #include "s_auth.h" #include "s_bsd.h" -#include "conf.h" #include "log.h" #include "s_misc.h" #include "s_serv.h" /* try_connections */ @@ -60,6 +60,7 @@ #include "supported.h" #include "watch.h" #include "conf_db.h" +#include "conf_class.h" /* /quote set variables */ struct SetOptions GlobalSetOptions; @@ -556,7 +557,7 @@ main(int argc, char *argv[]) init_ip_hash_table(); /* client host ip hash table */ init_host_hash(); /* Host-hashtable. */ init_client(); - init_class(); + class_init(); whowas_init(); watch_init(); init_auth(); /* Initialise the auth code */ |