summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-11 12:35:29 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-11 12:35:29 +0000
commitc0d8af77bb310786c8ade9e476b55990a3ab397b (patch)
treefa05901cfdab572baecef2ff0110ed83aa7b6827 /src/inspircd.cpp
parentffb1c16b3e6fc0497be20de49bb5401c2477920b (diff)
Move xline to before config system
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4883 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index f99b64aba..3ad12c69c 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -269,12 +269,12 @@ InspIRCd::InspIRCd(int argc, char** argv) : ModCount(-1)
this->stats = new serverstats();
this->Parser = new CommandParser(this);
this->Timers = new TimerManager();
+ this->XLines = new XLineManager(this);
Config->ClearStack();
Config->Read(true, NULL);
this->CheckRoot();
this->ModeGrok = new ModeParser(this);
- this->AddServerName(Config->ServerName);
- this->XLines = new XLineManager(this);
+ this->AddServerName(Config->ServerName);
CheckDie();
InitializeDisabledCommands(Config->DisabledCommands, this);
stats->BoundPortCount = BindPorts(true);