aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_auth_internal_plain.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-04 01:41:09 +0200
committerKim Alvefur <zash@zash.se>2017-04-04 01:41:09 +0200
commit5354e5645ec328120cadd24a7dfa7139fd07ec60 (patch)
tree0c04cc8be235f6105a1fd70380b87f3d7bb8b8b4 /plugins/mod_auth_internal_plain.lua
parent8962d239ed6f606d2808c4fddae80553bc391107 (diff)
parentf94c56040c088f63efdcab886d8ffc311d2e4359 (diff)
downloadprosody-5354e5645ec328120cadd24a7dfa7139fd07ec60.tar.gz
prosody-5354e5645ec328120cadd24a7dfa7139fd07ec60.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_auth_internal_plain.lua')
-rw-r--r--plugins/mod_auth_internal_plain.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_auth_internal_plain.lua b/plugins/mod_auth_internal_plain.lua
index db528432..276efb64 100644
--- a/plugins/mod_auth_internal_plain.lua
+++ b/plugins/mod_auth_internal_plain.lua
@@ -66,7 +66,7 @@ end
function provider.get_sasl_handler()
local getpass_authentication_profile = {
- plain = function(sasl, username, realm)
+ plain = function(_, username, realm)
local password = usermanager.get_password(username, realm);
if not password then
return "", nil;