diff options
| author | 2007-04-09 15:55:06 +0000 | |
|---|---|---|
| committer | 2007-04-09 15:55:06 +0000 | |
| commit | a22c47d19a9388c051dd96d711a0e4a4ef8a8b81 (patch) | |
| tree | 2b1e1136c1d8619671707dcea3928e9da524b17a /src/modules/m_spanningtree/treesocket2.cpp | |
| parent | Debug, and we seem to be sending capab twice (diff) | |
| download | inspircd++-a22c47d19a9388c051dd96d711a0e4a4ef8a8b81.tar.gz inspircd++-a22c47d19a9388c051dd96d711a0e4a4ef8a8b81.tar.bz2 inspircd++-a22c47d19a9388c051dd96d711a0e4a4ef8a8b81.zip | |
This is likely fucked up beyond all recognition. Today is fubar day :p
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6772 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/treesocket2.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/treesocket2.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/treesocket2.cpp b/src/modules/m_spanningtree/treesocket2.cpp index 1aa4fc8c7..8c332dc63 100644 --- a/src/modules/m_spanningtree/treesocket2.cpp +++ b/src/modules/m_spanningtree/treesocket2.cpp @@ -902,7 +902,8 @@ bool TreeSocket::Inbound_Server(std::deque<std::string> ¶ms) 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. - this->WriteLine(std::string("SERVER ")+this->Instance->Config->ServerName+" "+this->MakePass(x->SendPass, this->GetTheirChallenge())+" 0 :"+this->Instance->Config->ServerDesc); + if (this->GetOurChallenge().empty()) + 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; |
