diff options
| author | 2013-07-19 13:24:36 +0200 | |
|---|---|---|
| committer | 2013-08-22 13:42:20 +0200 | |
| commit | 15f4e6b865de11299e7688f28415957737999e02 (patch) | |
| tree | 76fba0730b8c8e9aea35384c3b99c0d723935d94 /src/modules/m_spanningtree/treesocket2.cpp | |
| parent | m_spanningtree Change TreeServer::GetSocket() to always return the socket tha... (diff) | |
m_spanningtree Implement DoOneToMany() using DoOneToAllButSender()
Diffstat (limited to 'src/modules/m_spanningtree/treesocket2.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/treesocket2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/treesocket2.cpp b/src/modules/m_spanningtree/treesocket2.cpp index 986e71cfe..5181dfeea 100644 --- a/src/modules/m_spanningtree/treesocket2.cpp +++ b/src/modules/m_spanningtree/treesocket2.cpp @@ -184,8 +184,8 @@ void TreeSocket::ProcessLine(std::string &line) sparams.push_back("0"); sparams.push_back(MyRoot->GetID()); sparams.push_back(":" + MyRoot->GetDesc()); - Utils->DoOneToAllButSender(ServerInstance->Config->GetSID(), "SERVER", sparams, MyRoot->GetName()); - Utils->DoOneToAllButSender(MyRoot->GetID(), "BURST", params, MyRoot->GetName()); + Utils->DoOneToAllButSender(ServerInstance->Config->GetSID(), "SERVER", sparams, MyRoot); + Utils->DoOneToAllButSender(MyRoot->GetID(), "BURST", params, MyRoot); } else if (command == "ERROR") { |
