diff options
author | Peter Powell <petpow@saberuk.com> | 2017-07-12 21:04:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-12 21:04:43 +0100 |
commit | e191f0ed6cdca421407ebc67c28fafabc6cc63f7 (patch) | |
tree | e91b722a8398106c80cd4ec1aa1c43b87b48087c | |
parent | 38df6072e933f963a316bda62ac8462af8696a20 (diff) | |
parent | 5527c473f0f483ff9e86bff1ccf558cbd98356e9 (diff) |
Merge pull request #1270 from SaberUK/master+sasl
Always append the SSL fingerprint even if EXTERNAL is not used.
-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); |