From 75fa56618e2f10782dc66262f964f6146d10bbc3 Mon Sep 17 00:00:00 2001 From: attilamolnar Date: Fri, 12 Apr 2013 17:16:00 +0200 Subject: m_spanningtree Add channel timestamp to FTOPIC --- src/modules/m_spanningtree/netburst.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules/m_spanningtree/netburst.cpp') diff --git a/src/modules/m_spanningtree/netburst.cpp b/src/modules/m_spanningtree/netburst.cpp index 566224c7a..a77623bfc 100644 --- a/src/modules/m_spanningtree/netburst.cpp +++ b/src/modules/m_spanningtree/netburst.cpp @@ -161,7 +161,7 @@ void TreeSocket::SyncChannel(Channel* chan) SendFJoins(chan); if (!chan->topic.empty()) { - snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s", ServerInstance->Config->GetSID().c_str(), chan->name.c_str(), (unsigned long)chan->topicset, chan->setby.c_str(), chan->topic.c_str()); + snprintf(data,MAXBUF,":%s FTOPIC %s %lu %lu %s :%s", ServerInstance->Config->GetSID().c_str(), chan->name.c_str(), (unsigned long) chan->age, (unsigned long)chan->topicset, chan->setby.c_str(), chan->topic.c_str()); this->WriteLine(data); } -- cgit v1.2.3