]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_password_hash.cpp
m_spanningtree Strip membership id from KICKs sent to 1202 protocol servers
[user/henk/code/inspircd.git] / src / modules / m_password_hash.cpp
index 4f7d9e4496dff34f21d90c298855ea4c63b4e8f7..89b6605b9d636aa6bfe07efb54119fb067900481 100644 (file)
@@ -34,7 +34,7 @@ class CommandMkpasswd : public Command
 
        void MakeHash(User* user, const std::string& algo, const std::string& stuff)
        {
-               if (algo.substr(0,5) == "hmac-")
+               if (!algo.compare(0, 5, "hmac-", 5))
                {
                        std::string type = algo.substr(5);
                        HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + type);
@@ -80,17 +80,9 @@ class ModuleOperHash : public Module
        {
        }
 
-       void init() CXX11_OVERRIDE
-       {
-               /* Read the config file first */
-               OnRehash(NULL);
-
-               ServerInstance->Modules->AddService(cmd);
-       }
-
        ModResult OnPassCompare(Extensible* ex, const std::string &data, const std::string &input, const std::string &hashtype) CXX11_OVERRIDE
        {
-               if (hashtype.substr(0,5) == "hmac-")
+               if (!hashtype.compare(0, 5, "hmac-", 5))
                {
                        std::string type = hashtype.substr(5);
                        HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + type);