diff options
| author | 2017-07-12 21:04:43 +0100 | |
|---|---|---|
| committer | 2017-07-12 21:04:43 +0100 | |
| commit | e191f0ed6cdca421407ebc67c28fafabc6cc63f7 (patch) | |
| tree | e91b722a8398106c80cd4ec1aa1c43b87b48087c /src/modules | |
| parent | Remove an unused variable in m_cloaking. (diff) | |
| parent | Always append the SSL fingerprint even if EXTERNAL is not used. (diff) | |
| download | inspircd++-e191f0ed6cdca421407ebc67c28fafabc6cc63f7.tar.gz inspircd++-e191f0ed6cdca421407ebc67c28fafabc6cc63f7.tar.bz2 inspircd++-e191f0ed6cdca421407ebc67c28fafabc6cc63f7.zip | |
Merge pull request #1270 from SaberUK/master+sasl
Always append the SSL fingerprint even if EXTERNAL is not used.
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/m_sasl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_sasl.cpp b/src/modules/m_sasl.cpp index 9f7e1527b..6ad9d77b7 100644 --- a/src/modules/m_sasl.cpp +++ b/src/modules/m_sasl.cpp @@ -217,7 +217,7 @@ class SaslAuthenticator params.push_back(method); LocalUser* localuser = IS_LOCAL(user); - if (method == "EXTERNAL" && localuser) + if (localuser) { std::string fp = SSLClientCert::GetFingerprint(&localuser->eh); |
