]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setident.cpp
More AddModes fixes
[user/henk/code/inspircd.git] / src / modules / m_setident.cpp
index 0eae1c7be2ad21c11af0591ce943ab9a37eedbcf..179053394d565fec482aaf4be90e8c812f94f91e 100644 (file)
 
 /** Handle /SETIDENT
  */
-class cmd_setident : public Command
+class CommandSetident : public Command
 {
  public:
cmd_setident (InspIRCd* Instance) : Command(Instance,"SETIDENT", 'o', 1)
CommandSetident (InspIRCd* Instance) : Command(Instance,"SETIDENT", 'o', 1)
        {
                this->source = "m_setident.so";
                syntax = "<new-ident>";
@@ -57,13 +57,13 @@ class cmd_setident : public Command
 
 class ModuleSetIdent : public Module
 {
-       cmd_setident*   mycommand;
+       CommandSetident*        mycommand;
        
  public:
        ModuleSetIdent(InspIRCd* Me) : Module(Me)
        {
                
-               mycommand = new cmd_setident(ServerInstance);
+               mycommand = new CommandSetident(ServerInstance);
                ServerInstance->AddCommand(mycommand);
        }