]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_opermd5.cpp
All modules which implement simplemodes (no parameters, not a list mode) can now...
[user/henk/code/inspircd.git] / src / modules / m_opermd5.cpp
index f6b482eb44ba0ad9464512299210ee52f20cfd05..9ac896e81e709a178554379a9094d746f68f29a5 100644 (file)
@@ -26,7 +26,7 @@ using namespace std;
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
 #include "inspircd.h"
 
 /* The four core functions - F1 is optimized somewhat */
@@ -272,7 +272,7 @@ void GenHash(const char* src, char* dest)
 class cmd_mkpasswd : public command_t
 {
  public:
      cmd_mkpasswd () : command_t("MKPASSWD", 'o', 1)
cmd_mkpasswd (InspIRCd* Instance) : command_t(Instance,"MKPASSWD", 'o', 1)
        {
                this->source = "m_opermd5.so";
                syntax = "<any-text>";
@@ -296,7 +296,7 @@ class ModuleOperMD5 : public Module
                : Module::Module(Me)
        {
                
-               mycommand = new cmd_mkpasswd();
+               mycommand = new cmd_mkpasswd(ServerInstance);
                ServerInstance->AddCommand(mycommand);
        }