aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-08-16 16:59:05 +0100
committerGravatar Sadie Powell2023-08-16 16:59:05 +0100
commitc3cbdeaa7c00f88276e8892584381791cb624461 (patch)
tree0abd5b676d4cf7a90e24d1603adbb4725f2a5023
parentFix mode error messages when the character has been remapped. (diff)
Fix some usages of "SSL" that have snuck back in.
-rw-r--r--src/modules/m_sslinfo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_sslinfo.cpp b/src/modules/m_sslinfo.cpp
index 67b129081..2c07dd224 100644
--- a/src/modules/m_sslinfo.cpp
+++ b/src/modules/m_sslinfo.cpp
@@ -251,7 +251,7 @@ private:
if (!source->IsOper() && chan->GetPrefixValue(source) < OP_VALUE)
{
- source->WriteNumeric(Numerics::ChannelPrivilegesNeeded(chan, OP_VALUE, "view TLS (SSL) client certificate information"));
+ source->WriteNumeric(Numerics::ChannelPrivilegesNeeded(chan, OP_VALUE, "view TLS client certificate information"));
return CmdResult::FAILURE;
}
@@ -409,12 +409,12 @@ public:
if (ServerInstance->Time() > cert->GetExpirationTime())
{
- user->WriteNotice("*** Your TLS (SSL) client certificate has expired.");
+ user->WriteNotice("*** Your TLS client certificate has expired.");
}
else if (static_cast<time_t>(ServerInstance->Time() + warnexpiring) > cert->GetExpirationTime())
{
const std::string duration = Duration::ToString(cert->GetExpirationTime() - ServerInstance->Time());
- user->WriteNotice("*** Your TLS (SSL) client certificate expires in " + duration + ".");
+ user->WriteNotice("*** Your TLS client certificate expires in " + duration + ".");
}
}