aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_legacyauth.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-07-21 21:01:36 +0100
committerMatthew Wild <mwild1@gmail.com>2010-07-21 21:01:36 +0100
commita6e1eb7590682effa4071556f702657b7fa6bb80 (patch)
tree7502339faf0ac5244281ae43056811bd681ed440 /plugins/mod_legacyauth.lua
parentd01c84cfa198b102ddc82dd6c0b18a6a3315fd27 (diff)
downloadprosody-a6e1eb7590682effa4071556f702657b7fa6bb80.tar.gz
prosody-a6e1eb7590682effa4071556f702657b7fa6bb80.zip
usermanager, mod_auth_internal_hashed, mod_legacyauth: New order of parameters for usermanager.test_password - username, host, password
Diffstat (limited to 'plugins/mod_legacyauth.lua')
-rw-r--r--plugins/mod_legacyauth.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_legacyauth.lua b/plugins/mod_legacyauth.lua
index 50566fa6..2e1ca328 100644
--- a/plugins/mod_legacyauth.lua
+++ b/plugins/mod_legacyauth.lua
@@ -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(username, password, session.host) then
+ if usermanager.test_password(username, session.host, password) then
-- Authentication successful!
local success, err = sessionmanager.make_authenticated(session, username);
if success then