aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree.cpp
diff options
context:
space:
mode:
authorGravatar w00t2006-10-02 00:08:58 +0000
committerGravatar w00t2006-10-02 00:08:58 +0000
commit4f59ab50b7b1693e26ce60be1550bb41655e050b (patch)
tree39cbbf873601f9e1821dad7452316c3d42ed371a /src/modules/m_spanningtree.cpp
parentRemove duplicate oper notice (diff)
downloadinspircd++-4f59ab50b7b1693e26ce60be1550bb41655e050b.tar.gz
inspircd++-4f59ab50b7b1693e26ce60be1550bb41655e050b.tar.bz2
inspircd++-4f59ab50b7b1693e26ce60be1550bb41655e050b.zip
This ULine check looks really, really bad - and caused horrible things to happen (equal TS wasn't merged, causing infinite loops.). I think removing it is the solution, Brain, please verify when you wake up. Seems to fix it.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5380 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree.cpp')
-rw-r--r--src/modules/m_spanningtree.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index 0f6ee9836..595bb7efa 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -1553,7 +1553,8 @@ class TreeSocket : public InspSocket
* Note that this causes the losing server to send out confirming
* FMODE lines.
*/
- if ((ourTS > TS) || (this->Instance->ULine(source.c_str())))
+ if (ourTS > TS)
+// || (this->Instance->ULine(source.c_str())))
{
Instance->Log(DEBUG,"FJOIN detected, our TS=%lu, their TS=%lu",ourTS,TS);
std::deque<std::string> param_list;