summaryrefslogtreecommitdiff
path: root/src/modules/m_chgident.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_chgident.cpp')
-rw-r--r--src/modules/m_chgident.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_chgident.cpp b/src/modules/m_chgident.cpp
index 7ae98b37d..42a4ef747 100644
--- a/src/modules/m_chgident.cpp
+++ b/src/modules/m_chgident.cpp
@@ -17,10 +17,10 @@
/** Handle /CHGIDENT
*/
-class cmd_chgident : public Command
+class CommandChgident : public Command
{
public:
- cmd_chgident (InspIRCd* Instance) : Command(Instance,"CHGIDENT", 'o', 2)
+ CommandChgident (InspIRCd* Instance) : Command(Instance,"CHGIDENT", 'o', 2)
{
this->source = "m_chgident.so";
syntax = "<nick> <newident>";
@@ -68,13 +68,13 @@ class cmd_chgident : public Command
class ModuleChgIdent : public Module
{
- cmd_chgident* mycommand;
+ CommandChgident* mycommand;
public:
ModuleChgIdent(InspIRCd* Me) : Module(Me)
{
- mycommand = new cmd_chgident(ServerInstance);
+ mycommand = new CommandChgident(ServerInstance);
ServerInstance->AddCommand(mycommand);
}