]> 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 cca24372a618d9f6e2f26af86b52a4d07952423e..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 (InspIRCd* Instance) : command_t(Instance,"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
                {