From: Attila Molnar Date: Mon, 8 Aug 2016 08:57:04 +0000 (+0200) Subject: Merge pull request #1196 from SaberUK/insp20+sha256 X-Git-Tag: v2.0.23~7 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=30a9cd0f5d9d6f96b637adb4afc8dbc727bf1afe;hp=57b01bc95833f29c660f92d13645e088b0df0df2;p=user%2Fhenk%2Fcode%2Finspircd.git Merge pull request #1196 from SaberUK/insp20+sha256 [2.0] Fix challenge auth when using m_hash_gnutls instead of m_sha256. --- diff --git a/src/modules/m_spanningtree/capab.cpp b/src/modules/m_spanningtree/capab.cpp index 7b6435898..0ab815fef 100644 --- a/src/modules/m_spanningtree/capab.cpp +++ b/src/modules/m_spanningtree/capab.cpp @@ -27,6 +27,7 @@ #include "utils.h" #include "link.h" #include "main.h" +#include "../hash.h" std::string TreeSocket::MyModules(int filter) { @@ -134,7 +135,7 @@ void TreeSocket::SendCapabilities(int phase) std::string extra; /* Do we have sha256 available? If so, we send a challenge */ - if (Utils->ChallengeResponse && (ServerInstance->Modules->Find("m_sha256.so"))) + if (Utils->ChallengeResponse && (ServerInstance->Modules->FindDataService("hash/sha256"))) { SetOurChallenge(ServerInstance->GenRandomStr(20)); extra = " CHALLENGE=" + this->GetOurChallenge(); @@ -320,7 +321,7 @@ bool TreeSocket::Capab(const parameterlist ¶ms) /* Challenge response, store their challenge for our password */ std::map::iterator n = this->capab->CapKeys.find("CHALLENGE"); - if (Utils->ChallengeResponse && (n != this->capab->CapKeys.end()) && (ServerInstance->Modules->Find("m_sha256.so"))) + if (Utils->ChallengeResponse && (n != this->capab->CapKeys.end()) && (ServerInstance->Modules->FindDataService("hash/sha256"))) { /* Challenge-response is on now */ this->SetTheirChallenge(n->second);