summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/conf/inspircd.conf.example2
-rw-r--r--include/modules.h2
-rw-r--r--src/modes/umode_o.cpp2
-rw-r--r--src/modmanager_static.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/docs/conf/inspircd.conf.example b/docs/conf/inspircd.conf.example
index fd12fc08a..a25f4aee1 100644
--- a/docs/conf/inspircd.conf.example
+++ b/docs/conf/inspircd.conf.example
@@ -655,7 +655,7 @@
<security
# allowcoreunload: If this value is set to yes, Opers will be able to
- # unload core modules (e.g. cmd_privmsg.so).
+ # unload core modules (e.g. core_privmsg).
allowcoreunload="no"
# announceinvites: This option controls which members of the channel
diff --git a/include/modules.h b/include/modules.h
index 14abad31b..3ad0258b8 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -1028,7 +1028,7 @@ class CoreExport ModuleManager : public fakederef<ModuleManager>
PRIO_STATE_LAST
} prioritizationState;
- /** Loads all core modules (cmd_*)
+ /** Loads all core modules (core_*)
*/
void LoadCoreModules(std::map<std::string, ServiceList>& servicemap);
diff --git a/src/modes/umode_o.cpp b/src/modes/umode_o.cpp
index 6e9517a4f..9d50e571b 100644
--- a/src/modes/umode_o.cpp
+++ b/src/modes/umode_o.cpp
@@ -37,7 +37,7 @@ ModeAction ModeUserOperator::OnModeChange(User* source, User* dest, Channel*, st
return MODEACTION_DENY;
/* Set the bitfields.
- * Note that oper status is only given in cmd_oper.cpp
+ * Note that oper status is only given in User::Oper()
* NOT here. It is impossible to directly set +o without
* verifying as an oper and getting an opertype assigned
* to your User!
diff --git a/src/modmanager_static.cpp b/src/modmanager_static.cpp
index 03e240993..4de111b63 100644
--- a/src/modmanager_static.cpp
+++ b/src/modmanager_static.cpp
@@ -17,7 +17,7 @@
*/
-#define MODNAME "cmd_all"
+#define MODNAME "core_all"
#include "inspircd.h"
#include "exitcodes.h"