diff options
-rw-r--r-- | src/modules/m_spanningtree/hmac.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/hmac.cpp b/src/modules/m_spanningtree/hmac.cpp index 335972003..cc1b33f23 100644 --- a/src/modules/m_spanningtree/hmac.cpp +++ b/src/modules/m_spanningtree/hmac.cpp @@ -144,7 +144,11 @@ bool TreeSocket::ComparePass(const Link& link, const std::string &theirs) { /* Require fingerprint to exist and match */ if (link.Fingerprint != fp) + { + ServerInstance->SNO->WriteToSnoMask('l',"Invalid SSL fingerprint on link %s: need '%s' got '%s'", + link.Name.c_str(), link.Fingerprint.c_str(), fp.c_str()); return false; + } } if (auth_challenge) |