mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.sasl.scram: Rename variable in places missed in 65e36b81d56a (thanks mt)
This commit is contained in:
parent
e5cf84bdcd
commit
47450a0eff
1 changed files with 2 additions and 2 deletions
|
@ -172,8 +172,8 @@ local function scram_gen(hash_name, H_f, HMAC_f)
|
|||
elseif self.profile[profile_name] then
|
||||
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
|
||||
if status == nil then return "failure", "not-authorized"
|
||||
elseif status == false then return "failure", "account-disabled" end
|
||||
end
|
||||
|
||||
local nonce = clientnonce .. generate_uuid();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue