diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-03-06 12:24:36 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-03-06 12:24:36 +0100 |
commit | 9b5a2903faf5cfa9474d53f30da054f9c4a1eb8e (patch) | |
tree | 8ba447b7bd57bed5fb9e7ca1570006302c635d3a /src/modules/m_globalload.cpp | |
parent | 1abb1488b7a81f7bc6f8dfcbdc6108915dd5b142 (diff) |
Update detection in module loading commands that relied on old command module names
Diffstat (limited to 'src/modules/m_globalload.cpp')
-rw-r--r-- | src/modules/m_globalload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp index eda654423..b3c664cf1 100644 --- a/src/modules/m_globalload.cpp +++ b/src/modules/m_globalload.cpp @@ -77,7 +77,7 @@ class CommandGunloadmodule : public Command CmdResult Handle (const std::vector<std::string> ¶meters, User *user) { if (!ServerInstance->Config->ConfValue("security")->getBool("allowcoreunload") && - InspIRCd::Match(parameters[0], "cmd_*.so", ascii_case_insensitive_map)) + InspIRCd::Match(parameters[0], "core_*.so", ascii_case_insensitive_map)) { user->WriteNumeric(ERR_CANTUNLOADMODULE, "%s :You cannot unload core commands!", parameters[0].c_str()); return CMD_FAILURE; |