Fix error message paramater formatting

This commit is contained in:
Mickael Remond 2016-04-06 15:05:19 +02:00
parent b2279d481d
commit abf768274a
1 changed files with 2 additions and 2 deletions

View File

@ -600,9 +600,9 @@ check_password_hash(User, Host, PasswordHash, HashMethod) ->
{A, _} when is_tuple(A) -> scrammed;
{_, <<"md5">>} -> get_md5(AccountPass);
{_, <<"sha">>} -> get_sha(AccountPass);
{_, _Method} ->
{_, Method} ->
?ERROR_MSG("check_password_hash called "
"with hash method", [_Method]),
"with hash method: ~p", [Method]),
undefined
end,
case AccountPassHash of