aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_sslinfo.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-07-19 14:39:04 +0200
committerGravatar Attila Molnar2014-07-19 14:39:04 +0200
commit3d0fa60ba524ce1af8056f86a126aa506f97261b (patch)
tree9d68c514d75ab7d19d492529064aa49bb6d60494 /src/modules/m_sslinfo.cpp
parentAccess local user list via new UserManager::GetLocalUsers() and make local_us... (diff)
Say "SSL certificate fingerprint" instead of "SSL fingerprint" everywhere
Diffstat (limited to 'src/modules/m_sslinfo.cpp')
-rw-r--r--src/modules/m_sslinfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_sslinfo.cpp b/src/modules/m_sslinfo.cpp
index cac09a412..c354e4e0e 100644
--- a/src/modules/m_sslinfo.cpp
+++ b/src/modules/m_sslinfo.cpp
@@ -184,7 +184,7 @@ class ModuleSSLInfo : public Module
std::string fingerprint;
if (ifo->oper_block->readString("fingerprint", fingerprint) && (!cert || cert->GetFingerprint() != fingerprint))
{
- user->WriteNumeric(491, ":This oper login requires a matching SSL fingerprint.");
+ user->WriteNumeric(491, ":This oper login requires a matching SSL certificate fingerprint.");
user->CommandFloodPenalty += 10000;
return MOD_RES_DENY;
}