diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-08 16:03:02 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-08 16:03:02 +0000 |
commit | d125d4964a03b65af1cf1676677e2f141202b07a (patch) | |
tree | 059a4c0399ff6316a4b1ded19c6ffa042e236786 /src/modules | |
parent | eae1a96c3651a3bd1f7948e041c5c83459d2f4b5 (diff) |
add a couple of parenthesis to the password comparison, because i couldnt easily make out the order of precedence, clarify it a bit :)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9426 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_spanningtree/server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/server.cpp b/src/modules/m_spanningtree/server.cpp index bab3d9adb..703972f2c 100644 --- a/src/modules/m_spanningtree/server.cpp +++ b/src/modules/m_spanningtree/server.cpp @@ -131,7 +131,7 @@ bool TreeSocket::Outbound_Reply_Server(std::deque<std::string> ¶ms) continue; if (!ComparePass(this->MakePass(x->RecvPass, this->GetOurChallenge(), password)) || - x->RecvPass != password && !this->GetTheirChallenge().empty()) + (x->RecvPass != password && !this->GetTheirChallenge().empty())) continue; TreeServer* CheckDupe = Utils->FindServer(sname); @@ -219,7 +219,7 @@ bool TreeSocket::Inbound_Server(std::deque<std::string> ¶ms) continue; if (!ComparePass(this->MakePass(x->RecvPass, this->GetOurChallenge(), password)) || - x->RecvPass != password && !this->GetTheirChallenge().empty()) + (x->RecvPass != password && !this->GetTheirChallenge().empty())) continue; /* Check for fully initialized instances of the server by id */ |