aboutsummaryrefslogtreecommitdiffstats
path: root/util/sasl
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-02-28 19:26:14 +0100
committerKim Alvefur <zash@zash.se>2016-02-28 19:26:14 +0100
commitcedba44c5ae12f0241b576ab7415e18935e50a9b (patch)
tree316e10b60ed8894966031e4c4d420ded235db025 /util/sasl
parent9b27d49521f4bd68e5d828aa41770e8a7400da6c (diff)
downloadprosody-cedba44c5ae12f0241b576ab7415e18935e50a9b.tar.gz
prosody-cedba44c5ae12f0241b576ab7415e18935e50a9b.zip
util.sasl.scram: Rename variable to avoid name clash [luacheck]
Diffstat (limited to 'util/sasl')
-rw-r--r--util/sasl/scram.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/sasl/scram.lua b/util/sasl/scram.lua
index a1b5117a..b3c4edc8 100644
--- a/util/sasl/scram.lua
+++ b/util/sasl/scram.lua
@@ -150,9 +150,9 @@ local function scram_gen(hash_name, H_f, HMAC_f)
-- retreive credentials
local stored_key, server_key, salt, iteration_count;
if self.profile.plain then
- local password, state = self.profile.plain(self, username, self.realm)
- if state == nil then return "failure", "not-authorized"
- elseif state == false then return "failure", "account-disabled" end
+ local password, status = self.profile.plain(self, username, self.realm)
+ if status == nil then return "failure", "not-authorized"
+ elseif status == false then return "failure", "account-disabled" end
password = saslprep(password);
if not password then
@@ -170,8 +170,8 @@ local function scram_gen(hash_name, H_f, HMAC_f)
return "failure", "temporary-auth-failure";
end
elseif self.profile[profile_name] then
- local state;
- stored_key, server_key, iteration_count, salt, state = self.profile[profile_name](self, username, self.realm);
+ local status;
+ stored_key, server_key, iteration_count, salt, status = self.profile[profile_name](self, username, self.realm);
if state == nil then return "failure", "not-authorized"
elseif state == false then return "failure", "account-disabled" end
end