summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-28 21:23:48 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-28 21:23:48 +0000
commit532a58e71129f37f7f7208495ad10fe5ae445699 (patch)
tree718b45dae8f64fd02f2781735ab340c301d465f6 /src
parent9b58ecc6c9c129a7e3c43d5895de28fb3b9d00a5 (diff)
Fixed dodgy server being broadcast on BURST
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1983 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_spanningtree.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 5ff0b77e0..d95471bd0 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -708,6 +708,11 @@ class TreeSocket : public InspSocket
this->LinkState = CONNECTED;
Node = new TreeServer(InboundServerName,InboundDescription,TreeRoot,this);
TreeRoot->AddChild(Node);
+ params.clear();
+ params.push_back(InboundServerName);
+ params.push_back("*");
+ params.push_back("1");
+ params.push_back(InboundDescription);
DoOneToAllButSender(InboundServerName,"SERVER",params,InboundServerName);
this->DoBurst(Node);
}