util/sasl/scram.lua

changeset 2267
6e662e4f7ab2
parent 2265
7fe644057dc2
child 2268
0a675bb365a9
--- a/util/sasl/scram.lua	Mon Nov 30 20:53:25 2009 +0100
+++ b/util/sasl/scram.lua	Tue Dec 01 01:41:31 2009 +0500
@@ -116,9 +116,9 @@
 			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);

mercurial