diff options
author | Kim Alvefur <zash@zash.se> | 2017-08-28 21:05:12 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-08-28 21:05:12 +0200 |
commit | 38f73e28ae61f2222667b06ce99e44193ef82d78 (patch) | |
tree | fd5a447ceea625acd90410b509ca06e498d25171 /plugins/mod_auth_internal_hashed.lua | |
parent | e9d37d780b2e50e4f3ed34d3c355d651c0375cb2 (diff) | |
parent | 7e28119b3d3fe91b2f8541da2af90b232ab38412 (diff) | |
download | prosody-38f73e28ae61f2222667b06ce99e44193ef82d78.tar.gz prosody-38f73e28ae61f2222667b06ce99e44193ef82d78.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_auth_internal_hashed.lua')
-rw-r--r-- | plugins/mod_auth_internal_hashed.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/mod_auth_internal_hashed.lua b/plugins/mod_auth_internal_hashed.lua index 53e345e5..35764afb 100644 --- a/plugins/mod_auth_internal_hashed.lua +++ b/plugins/mod_auth_internal_hashed.lua @@ -120,7 +120,9 @@ function provider.get_sasl_handler() local credentials = accounts:get(username); if not credentials then return; end if credentials.password then - usermanager.set_password(username, credentials.password, host); + if provider.set_password(username, credentials.password) == nil then + return nil, "Auth failed. Could not set hashed password from plaintext."; + end credentials = accounts:get(username); if not credentials then return; end end |