aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_spanningtree/treesocket2.cpp
diff options
context:
space:
mode:
authorGravatar brain2007-04-09 16:04:13 +0000
committerGravatar brain2007-04-09 16:04:13 +0000
commit39361603e3b95829e54d04b92b376ebe79edc8b3 (patch)
tree40d28998517ef34a93069a760dbe13ae74f7b3eb /src/modules/m_spanningtree/treesocket2.cpp
parentThis is likely fucked up beyond all recognition. Today is fubar day :p (diff)
downloadinspircd++-39361603e3b95829e54d04b92b376ebe79edc8b3.tar.gz
inspircd++-39361603e3b95829e54d04b92b376ebe79edc8b3.tar.bz2
inspircd++-39361603e3b95829e54d04b92b376ebe79edc8b3.zip
More fucking around
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6773 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/treesocket2.cpp')
-rw-r--r--src/modules/m_spanningtree/treesocket2.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/treesocket2.cpp b/src/modules/m_spanningtree/treesocket2.cpp
index 8c332dc63..1aa4fc8c7 100644
--- a/src/modules/m_spanningtree/treesocket2.cpp
+++ b/src/modules/m_spanningtree/treesocket2.cpp
@@ -902,8 +902,7 @@ bool TreeSocket::Inbound_Server(std::deque<std::string> &params)
this->InboundDescription = description;
// this is good. Send our details: Our server name and description and hopcount of 0,
// along with the sendpass from this block.
- if (this->GetOurChallenge().empty())
- this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+this->MakePass(x->SendPass, this->GetTheirChallenge())+" 0 :"+this->Instance->Config->ServerDesc);
+ this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+this->MakePass(x->SendPass, this->GetTheirChallenge())+" 0 :"+this->Instance->Config->ServerDesc);
// move to the next state, we are now waiting for THEM.
this->LinkState = WAIT_AUTH_2;
return true;