diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-14 12:55:37 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-14 12:55:37 +0000 |
commit | fe9ec9434ea111e3e5dfce7e79a38460877ca676 (patch) | |
tree | f6c901747bf8ec5609f57dce0c895aa5ee15f310 /src/inspircd.cpp | |
parent | a13ffc7e5d7eb1b8161fe64cc125c891c90e5f08 (diff) |
Stupid typos
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1083 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 6eacf92ca..38c58179f 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -3921,13 +3921,13 @@ int InspIRCd(void) kill_link(count2->second,"Registration timeout"); goto label; } - if ((TIME > count2->second->signon) && (count2->second->registered == 3) && (AllModulesReportReady(user))) + if ((TIME > count2->second->signon) && (count2->second->registered == 3) && (AllModulesReportReady(count2->second))) { count2->second->dns_done = true; FullConnectUser(count2->second); goto label; } - if ((count2->second->dns_done) && (count2->second->registered == 3) && AllModulesReportReady(user))) // both NICK and USER... and DNS + if ((count2->second->dns_done) && (count2->second->registered == 3) && (AllModulesReportReady(count2->second))) // both NICK and USER... and DNS { FullConnectUser(count2->second); goto label; |