summaryrefslogtreecommitdiff
path: root/src/cmd_info.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-26 17:26:16 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-26 17:26:16 +0000
commita9b90ecb4329498aba52da6aaa9812e3a70b8e11 (patch)
tree38053a6bfa07486c6fc5cc46ebddb5e32306014a /src/cmd_info.cpp
parentdab3dc93c177400a749400c61c9253be055b78e3 (diff)
Adding hook type checking to event calls to speed them up
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2653 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_info.cpp')
-rw-r--r--src/cmd_info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_info.cpp b/src/cmd_info.cpp
index 77c7c7782..0f9abf8d5 100644
--- a/src/cmd_info.cpp
+++ b/src/cmd_info.cpp
@@ -74,7 +74,7 @@ void cmd_info::Handle (char **parameters, int pcnt, userrec *user)
WriteServ(user->fd,"371 %s :this software.",user->nick);
WriteServ(user->fd,"371 %s : ",user->nick);
WriteServ(user->fd,"371 %s :Best experienced with: An IRC client.",user->nick);
- FOREACH_MOD OnInfo(user);
+ FOREACH_MOD(I_OnInfo,OnInfo(user));
WriteServ(user->fd,"374 %s :End of /INFO list",user->nick);
}