Skip to content

Commit

Permalink
Merge pull request #1270 from SaberUK/master+sasl
Browse files Browse the repository at this point in the history
Always append the SSL fingerprint even if EXTERNAL is not used.
  • Loading branch information
SadieCat committed Jul 12, 2017
2 parents 38df607 + 5527c47 commit e191f0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/m_sasl.cpp
Expand Up @@ -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);

Expand Down

0 comments on commit e191f0e

Please sign in to comment.