]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_password_hash.cpp
Fix IPv6 cloaking in compatability mode (was using the wrong xtab confusor)
[user/henk/code/inspircd.git] / src / modules / m_password_hash.cpp
index 7d2b9fc79b016cf7c395af62c828cc95c01eebd3..44e02eeda8b07368eb15c40ea017d94e476e374c 100644 (file)
@@ -44,6 +44,7 @@ class CommandMkpasswd : public Command
 
                        user->WriteServ("NOTICE %s :%s hashed password for %s is %s",
                                user->nick.c_str(), algo.c_str(), stuff.c_str(), str.c_str());
+                       return;
                }
                HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + algo);
                if (hp)