summaryrefslogtreecommitdiff
path: root/src/users.cpp
diff options
context:
space:
mode:
authorspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-24 18:02:46 +0000
committerspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-24 18:02:46 +0000
commitef897559824f0607786ed79cc862c02b2b0520b9 (patch)
treea3d5f7d289aa81af9840e31d5834b8ee73d56279 /src/users.cpp
parent272349a3e921ac880ad94f09508160915f7ffe9c (diff)
Renamed the OnGlobalConnect callback to OnPostConnect, which is much more appropriate
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5010 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/users.cpp')
-rw-r--r--src/users.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp
index f761c56f9..fa407e2c2 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -1060,7 +1060,7 @@ void userrec::FullConnect(CullList* Goners)
* changes dont go out onto the network and produce 'fake direction'.
*/
FOREACH_MOD(I_OnUserConnect,OnUserConnect(this));
- FOREACH_MOD(I_OnGlobalConnect,OnGlobalConnect(this));
+ FOREACH_MOD(I_OnPostConnect,OnPostConnect(this));
this->registered = REG_ALL;
ServerInstance->WriteOpers("*** Client connecting on port %d: %s!%s@%s [%s]", this->GetPort(), this->nick, this->ident, this->host, this->GetIPString());
}