diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/inspircd.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 923613002..98c7cc3ea 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -502,11 +502,6 @@ InspIRCd::InspIRCd(int argc, char** argv) this->AddServerName(Config->ServerName); - /* set up fake client again this time with the correct uid */ - delete FakeClient; - this->FakeClient = new User(this); - this->FakeClient->SetFd(FD_MAGIC_NUMBER); - /* * Initialise SID/UID. * For an explanation as to exactly how this works, and why it works this way, see GetUID(). @@ -531,6 +526,11 @@ InspIRCd::InspIRCd(int argc, char** argv) this->InitialiseUID(); + /* set up fake client again this time with the correct uid */ + delete FakeClient; + this->FakeClient = new User(this); + this->FakeClient->SetFd(FD_MAGIC_NUMBER); + // Get XLine to do it's thing. this->XLines->CheckELines(); this->XLines->ApplyLines(); |