summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-30 11:46:46 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-30 11:46:46 +0000
commit3ed820fb8acfe3d601b4bd6346cfe3226b589315 (patch)
tree0624bc11ba0a76d54c799fda437ef0826194217c
parenta583781024305228e99b33d9c04a0ca6fc6665bf (diff)
Added missing ;
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2044 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/commands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp
index c9bddbcd8..205528be8 100644
--- a/src/commands.cpp
+++ b/src/commands.cpp
@@ -531,7 +531,7 @@ void handle_topic(char **parameters, int pcnt, userrec *user)
WriteChannel(Ptr,user,"TOPIC %s :%s",Ptr->name, Ptr->topic);
if (!strcasecmp(user->server,ServerName))
{
- FOREACH_MOD OnPostLocalTopicChange(user,Ptr,topic)
+ FOREACH_MOD OnPostLocalTopicChange(user,Ptr,topic);
}
}
else