Software /
code /
prosody
Changeset
7218:6226307f6ac4
util.sasl.scram: Rename variable in places missed in 65e36b81d56a (thanks mt)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 28 Feb 2016 20:01:13 +0100 |
parents | 7217:0a43b7ffa3af |
children | 7220:2156aee1233e 7224:07a4c807a94a |
files | util/sasl/scram.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/util/sasl/scram.lua Sun Feb 28 19:26:45 2016 +0100 +++ b/util/sasl/scram.lua Sun Feb 28 20:01:13 2016 +0100 @@ -172,8 +172,8 @@ 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();