Fix missing parameter in mod_auth_internal_hashed.

This commit is contained in:
Kim Alvefur 2010-06-09 03:41:24 +02:00
parent acdb275b7b
commit 6ef96921f5

View file

@ -121,7 +121,7 @@ function new_hashpass_provider(host)
scram_sha_1 = function(username, realm)
local credentials = datamanager.load(username, host, "accounts") or {};
if credentials.password then
usermanager.set_password(username, credentials.password);
usermanager.set_password(username, credentials.password, host);
credentials = datamanager.load(username, host, "accounts") or {};
end
local salted_password, iteration_count, salt = credentials.hashpass, credentials.iteration_count, credentials.salt;