From 8ecc1e8ca280c5c715dcc928a73a425e2e0fd432 Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Tue, 1 Dec 2009 01:41:31 +0500 Subject: util.sasl.scram: Fixed a variable redeclaration. --- 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 be82c60e..e0246c95 100644 --- a/util/sasl/scram.lua +++ b/util/sasl/scram.lua @@ -116,9 +116,9 @@ local function scram_sha_1(self, message) return "failure", "malformed-request", "Missing an attribute(p, r or c) in SASL message."; end - local password; + local password, state; if self.profile.plain then - local password, state = self.profile.plain(self.state.name, self.realm) + password, state = self.profile.plain(self.state.name, self.realm) if state == nil then return "failure", "not-authorized" elseif state == false then return "failure", "account-disabled" end password = saslprep(password); -- cgit v1.2.3