aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree/netburst.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2012-05-29 20:56:54 +0200
committerGravatar attilamolnar2012-05-29 20:56:54 +0200
commitef970fe35babae4da5227416cd285d42016b186b (patch)
tree43f8dffa67b981fbb035b09caa150aaa0e87bf4d /src/modules/m_spanningtree/netburst.cpp
parentm_spanningtree Add timestamp to channel METADATA, introduce protocol version ... (diff)
m_spanningtree Add channel timestamp to FTOPIC in protocol version 1204
Fixes issue #148
Diffstat (limited to 'src/modules/m_spanningtree/netburst.cpp')
-rw-r--r--src/modules/m_spanningtree/netburst.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/netburst.cpp b/src/modules/m_spanningtree/netburst.cpp
index f71bfed7c..c4cc93af8 100644
--- a/src/modules/m_spanningtree/netburst.cpp
+++ b/src/modules/m_spanningtree/netburst.cpp
@@ -156,7 +156,7 @@ void TreeSocket::SendFJoins(Channel* c)
if (!c->topic.empty())
{
- snprintf(list,MAXBUF,":%s FTOPIC %s %lu %s :%s", ServerInstance->Config->GetSID().c_str(), c->name.c_str(), (unsigned long)c->topicset, c->setby.c_str(), c->topic.c_str());
+ snprintf(list,MAXBUF,":%s FTOPIC %s %lu %lu %s :%s", ServerInstance->Config->GetSID().c_str(), c->name.c_str(), (unsigned long) c->age, (unsigned long) c->topicset, c->setby.c_str(), c->topic.c_str());
WriteLine(list);
}