summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-02 09:04:02 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-02 09:04:02 +0000
commit4f66a9a4c40ccab57b39eb4dd16c3f02438e3b4c (patch)
tree6ad13ca1436cb90e0be90190f9be8dc7da704d64 /src/inspircd.cpp
parent28c6e2f97044c5011dcdcf9e483294452f58a3be (diff)
Fuck. STOP committing first thing after waking up.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9259 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 67d96a57c..40e1d8426 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -317,7 +317,7 @@ InspIRCd::InspIRCd(int argc, char** argv)
this->s_signal = 0;
// Create base manager classes early, so nothing breaks
- this->Users = new UserManager(this, "#INVALID");
+ this->Users = new UserManager(this);
this->Users->unregistered_count = 0;
@@ -512,7 +512,7 @@ InspIRCd::InspIRCd(int argc, char** argv)
this->InitialiseUID();
/* set up fake client again this time with the correct uid */
- this->FakeClient = new User(this);
+ this->FakeClient = new User(this, "#INVALID");
this->FakeClient->SetFd(FD_MAGIC_NUMBER);
// Get XLine to do it's thing.