]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chgident.cpp
Auto loading of commands as shared objects via dlsym (very lightweight interface...
[user/henk/code/inspircd.git] / src / modules / m_chgident.cpp
index 83e3c70d5e44abddac4ec4ea0d1ac7d49f3a5963..a658e17930f3f0ad0306710632c1098ffb957f4a 100644 (file)
@@ -1,17 +1,17 @@
 #include <string>
 #include "users.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
 #include "inspircd.h"
 
 /* $ModDesc: Provides support for the CHGIDENT command */
 
-extern InspIRCd* ServerInstance;
+
 
 class cmd_chgident : public command_t
 {
  public:
-       cmd_chgident() : command_t("CHGIDENT", 'o', 2)
+       cmd_chgident (InspIRCd* Instance) : command_t(Instance,"CHGIDENT", 'o', 2)
        {
                this->source = "m_chgident.so";
                syntax = "<nick> <newident>";
@@ -30,7 +30,8 @@ class cmd_chgident : public command_t
                        }
                
                        ServerInstance->WriteOpers("%s used CHGIDENT to change %s's ident from '%s' to '%s'", user->nick, dest->nick, dest->ident, parameters[1]);
-                       strlcpy(dest->ident, parameters[1], IDENTMAX+2);
+                       dest->ChangeIdent(parameters[1]);
+                       //strlcpy(dest->ident, parameters[1], IDENTMAX+2);
                }
                else
                {
@@ -43,13 +44,13 @@ class cmd_chgident : public command_t
 class ModuleChgIdent : public Module
 {
        cmd_chgident* mycommand;
-       Server* Srv;
+       
        
 public:
        ModuleChgIdent(InspIRCd* Me) : Module::Module(Me)
        {
-               mycommand = new cmd_chgident();
-               Srv->AddCommand(mycommand);
+               mycommand = new cmd_chgident(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
        }
        
        virtual ~ModuleChgIdent()