mod_legacyauth: Fixed the ordering of parameters passed to usermanager.test_password.

This commit is contained in:
Waqas Hussain 2010-06-10 03:54:22 +05:00
parent 802beadb22
commit a92e0df397

View file

@ -50,7 +50,7 @@ module:add_iq_handler("c2s_unauthed", "jabber:iq:auth",
username = nodeprep(username);
resource = resourceprep(resource)
local reply = st.reply(stanza);
if usermanager.test_password(session.host, username, password) then
if usermanager.test_password(username, password, session.host) then
-- Authentication successful!
local success, err = sessionmanager.make_authenticated(session, username);
if success then