]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_password_hash.cpp
Fix various cases of broken indentation.
[user/henk/code/inspircd.git] / src / modules / m_password_hash.cpp
index b092a37f4899d7a79874ebf3e8562030318795b1..696c4fe6d4b8ecba877378a07425b5edc23f9568 100644 (file)
@@ -28,11 +28,11 @@ class CommandMkpasswd : public Command
  public:
        CommandMkpasswd(Module* Creator) : Command(Creator, "MKPASSWD", 2)
        {
-               syntax = "<hashtype> <any-text>";
+               syntax = "<hashtype> <plaintext>";
                Penalty = 5;
        }
 
-       CmdResult Handle(const std::vector<std::string>& parameters, User* user) CXX11_OVERRIDE
+       CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
        {
                if (!parameters[0].compare(0, 5, "hmac-", 5))
                {