diff options
author | Peter Powell <petpow@saberuk.com> | 2016-12-22 00:55:53 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2016-12-22 00:55:53 +0000 |
commit | 5527c473f0f483ff9e86bff1ccf558cbd98356e9 (patch) | |
tree | 9ca8e772eebceb9f8afb903e2c78570b8f129961 | |
parent | 9133e8b340714066e9f4a63a6fb04a42991da1da (diff) |
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 2b247a198..9cd81ae66 100644 --- a/src/modules/m_sasl.cpp +++ b/src/modules/m_sasl.cpp @@ -164,7 +164,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); |