summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2016-12-22 00:55:53 +0000
committerPeter Powell <petpow@saberuk.com>2016-12-22 00:55:53 +0000
commit5527c473f0f483ff9e86bff1ccf558cbd98356e9 (patch)
tree9ca8e772eebceb9f8afb903e2c78570b8f129961 /src/modules
parent9133e8b340714066e9f4a63a6fb04a42991da1da (diff)
Always append the SSL fingerprint even if EXTERNAL is not used.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_sasl.cpp2
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);