Fix types in check_password_hash

This commit is contained in:
Paweł Chmielowski 2016-11-10 11:20:57 +01:00
parent 717159a98f
commit 5ffc01db53
1 changed files with 2 additions and 2 deletions

View File

@ -176,8 +176,8 @@ get_commands_spec() ->
desc = "Check if the password hash is correct",
longdesc = "Allowed hash methods: md5, sha.",
module = ?MODULE, function = check_password_hash,
args = [{user, binary}, {host, binary}, {passwordhash, string},
{hashmethod, string}],
args = [{user, binary}, {host, binary}, {passwordhash, binary},
{hashmethod, binary}],
args_example = [<<"peter">>, <<"myserver.com">>,
<<"5ebe2294ecd0e0f08eab7690d2a6ee69">>, <<"md5">>],
args_desc = ["User name to check", "Server to check",