From ff0109d6bacec36fe40c3806e3ddca30ddc6ad62 Mon Sep 17 00:00:00 2001 From: Peter Powell Date: Mon, 18 Nov 2019 13:59:37 +0000 Subject: [PATCH] inspircd3: Refer to modules using without a prefix/suffix. --- modules/protocol/inspircd3.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/protocol/inspircd3.cpp b/modules/protocol/inspircd3.cpp index 49c26f505..b7b2fce16 100644 --- a/modules/protocol/inspircd3.cpp +++ b/modules/protocol/inspircd3.cpp @@ -1146,15 +1146,15 @@ struct IRCDMessageCapab : Message::Capab { if (!Servers::Capab.count("SERVICES")) { - UplinkSocket::Message() << "ERROR :m_services_account.so is not loaded. This is required by Anope"; - Anope::QuitReason = "ERROR: Remote server does not have the m_services_account module loaded, and this is required."; + UplinkSocket::Message() << "ERROR :The services_account module is not loaded. This is required by Anope"; + Anope::QuitReason = "ERROR: Remote server does not have the services_account module loaded, and this is required."; Anope::Quitting = true; return; } if (!ModeManager::FindUserModeByName("PRIV")) { - UplinkSocket::Message() << "ERROR :m_hidechans.so is not loaded. This is required by Anope"; - Anope::QuitReason = "ERROR: Remote server does not have the m_hidechans module loaded, and this is required."; + UplinkSocket::Message() << "ERROR :The hidechans module is not loaded. This is required by Anope"; + Anope::QuitReason = "ERROR: Remote server does not have the hidechans module loaded, and this is required."; Anope::Quitting = true; return; }