]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Remove module file extensions from user-visible messages.
authorPeter Powell <petpow@saberuk.com>
Sun, 27 Aug 2017 12:25:29 +0000 (13:25 +0100)
committerPeter Powell <petpow@saberuk.com>
Sun, 27 Aug 2017 12:25:29 +0000 (13:25 +0100)
src/coremods/core_reloadmodule.cpp
src/modules/m_httpd_acl.cpp
src/modules/m_httpd_config.cpp
src/modules/m_httpd_stats.cpp
src/modules/m_sasl.cpp
src/modules/m_spanningtree/main.cpp

index 68db9e25a1d8ad7efee461cb0bc02589f61b8c4e..ffd4f9bf5aebada28022e2830d3b90302a3c49db 100644 (file)
@@ -613,7 +613,7 @@ CmdResult CommandReloadmodule::Handle (const std::vector<std::string>& parameter
        Module* m = ServerInstance->Modules->Find(parameters[0]);
        if (m == creator)
        {
-               user->WriteNumeric(RPL_LOADEDMODULE, parameters[0], "You cannot reload core_reloadmodule.so (unload and load it)");
+               user->WriteNumeric(RPL_LOADEDMODULE, parameters[0], "You cannot reload core_reloadmodule (unload and load it)");
                return CMD_FAILURE;
        }
 
index 866fa0e866a137f80df22ca45384bb77a79c0fc4..00a50d7a1b6946fe9f27166806add95b2b33fb47 100644 (file)
@@ -224,7 +224,7 @@ class ModuleHTTPAccessList : public Module, public HTTPACLEventListener
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides access control lists (passwording of resources, ip restrictions etc) to m_httpd.so dependent modules", VF_VENDOR);
+               return Version("Provides access control lists (passwording of resources, ip restrictions etc) to m_httpd dependent modules", VF_VENDOR);
        }
 };
 
index 11c82c03118400098651d36750ca15945be6d6c1..c47ddb5b2fb8ae70b5d36d832f246e76b3bb4f9e 100644 (file)
@@ -108,7 +108,7 @@ class ModuleHttpConfig : public Module, public HTTPRequestEventListener
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Allows for the server configuration to be viewed over HTTP via m_httpd.so", VF_VENDOR);
+               return Version("Allows for the server configuration to be viewed over HTTP via m_httpd", VF_VENDOR);
        }
 };
 
index 62ae0c204bda86de042d7bdfc95298a6f1c22644..41d85a3b48160ead7bf2a590e006440ff2270107 100644 (file)
@@ -247,7 +247,7 @@ class ModuleHttpStats : public Module, public HTTPRequestEventListener
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides statistics over HTTP via m_httpd.so", VF_VENDOR);
+               return Version("Provides statistics over HTTP via m_httpd", VF_VENDOR);
        }
 };
 
index 6ad9d77b71e68644628c3900a6123500cd902d2c..a2a721c2ab9f08756d168b683cf7ee2e427f32f7 100644 (file)
@@ -426,7 +426,7 @@ class ModuleSASL : public Module
        void init() CXX11_OVERRIDE
        {
                if (!ServerInstance->Modules->Find("m_services_account.so") || !ServerInstance->Modules->Find("m_cap.so"))
-                       ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "WARNING: m_services_account.so and m_cap.so are not loaded! m_sasl.so will NOT function correctly until these two modules are loaded!");
+                       ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "WARNING: m_services_account and m_cap are not loaded! m_sasl will NOT function correctly until these two modules are loaded!");
        }
 
        void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
index 321ed99b839552b50c1d392c899227bf0c081031..2d76102bce6f020a60a09d8007e88dbb94433c4e 100644 (file)
@@ -231,7 +231,7 @@ void ModuleSpanningTree::ConnectServer(Link* x, Autoconnect* y)
        }
        else if (!DNS)
        {
-               ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: Hostname given and m_dns.so is not loaded, unable to resolve.", x->Name.c_str());
+               ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: Hostname given and core_dns is not loaded, unable to resolve.", x->Name.c_str());
        }
        else
        {