]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_securelist.cpp
Allocate id properly
[user/henk/code/inspircd.git] / src / modules / m_securelist.cpp
index 32017d591bc40d1ea934caf98db56f7f4b7ff56a..97f84f5c7b98f2b765c9a82398e24d633a13d20f 100644 (file)
@@ -55,7 +55,7 @@ class ModuleSecureList : public Module
         * OnPreCommand()
         *   Intercept the LIST command.
         */ 
-       virtual int OnPreCommand(const std::string &command, char **parameters, int pcnt, userrec *user, bool validated)
+       virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated)
        {
                /* If the command doesnt appear to be valid, we dont want to mess with it. */
                if (!validated)
@@ -81,7 +81,7 @@ class ModuleSecureList : public Module
 
        virtual Priority Prioritize()
        {
-               return Srv->PriorityBefore("m_safelist.so");
+               return (Priority)Srv->PriorityBefore("m_safelist.so");
        }
 
 };