From 47450a0eff25547333f561ff2903f92d081c9bdf Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sun, 28 Feb 2016 20:01:13 +0100 Subject: util.sasl.scram: Rename variable in places missed in 65e36b81d56a (thanks mt) --- util/sasl/scram.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util') diff --git a/util/sasl/scram.lua b/util/sasl/scram.lua index febbc639..d2b2abde 100644 --- a/util/sasl/scram.lua +++ b/util/sasl/scram.lua @@ -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(); -- cgit v1.2.3