summaryrefslogtreecommitdiff
path: root/src/protocol.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2012-10-02 22:16:35 -0400
committerAdam <Adam@anope.org>2012-10-02 22:16:35 -0400
commit87478187af9f6f670ebf679ce7cc6cc29b21f7af (patch)
tree52568515b06b380ee57813b904b98ca04ebdaeab /src/protocol.cpp
parent7042223f2eb486e8d1aec9fd176d416096a6e927 (diff)
Fix topiclock on inspircd
Diffstat (limited to 'src/protocol.cpp')
-rw-r--r--src/protocol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol.cpp b/src/protocol.cpp
index 14fe249ed..6be9804c1 100644
--- a/src/protocol.cpp
+++ b/src/protocol.cpp
@@ -119,9 +119,9 @@ void IRCDProto::SendNumericInternal(int numeric, const Anope::string &dest, cons
UplinkSocket::Message(Me) << n << " " << dest << " " << buf;
}
-void IRCDProto::SendTopic(BotInfo *bi, Channel *c)
+void IRCDProto::SendTopic(BotInfo *bi, Channel *c, const Anope::string &topic, const Anope::string &, time_t &)
{
- UplinkSocket::Message(bi) << "TOPIC " << c->name << " :" << c->topic;
+ UplinkSocket::Message(bi) << "TOPIC " << c->name << " :" << topic;
}
void IRCDProto::SendSVSKill(const BotInfo *source, User *user, const char *fmt, ...)