# HG changeset patch # User Kim Alvefur # Date 1456686073 -3600 # Node ID 6226307f6ac47fab84448e060e5250c0c5b1b8cb # Parent 0a43b7ffa3af255979efa442931ed211e0fd4b8e util.sasl.scram: Rename variable in places missed in 65e36b81d56a (thanks mt) diff -r 0a43b7ffa3af -r 6226307f6ac4 util/sasl/scram.lua --- 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();