util.sasl.scram: Remove some debugging output.
authorTobias Markmann <tm@ayena.de>
Mon, 17 Jan 2011 16:50:21 +0100
changeset 5837 574e91531994
parent 5836 fa8cfe830fef
child 5838 a2659baf8332
util.sasl.scram: Remove some debugging output.
util/sasl/scram.lua
--- a/util/sasl/scram.lua	Mon Jan 17 16:50:21 2011 +0100
+++ b/util/sasl/scram.lua	Mon Jan 17 16:50:21 2011 +0100
@@ -131,12 +131,6 @@
 			self.state["gs2_cbind_flag"], self.state["gs2_cbind_name"], self.state["authzid"], self.state["name"], self.state["clientnonce"]
 				= client_first_message:match("^(%a)=?([%a%-]*),(.*),n=(.*),r=([^,]*).*");
 
-			-- we don't do any channel binding yet
-			log("debug", "Decoded: cbind_flag: %s, cbind_name: %s, authzid: %s, name: %s, clientnonce: %s", tostring(self.state.gs2_cbind_flag),
-																								tostring(self.state.gs2_cbind_name),
-																								tostring(self.state.authzid), 
-																								tostring(self.state.name), 
-																								tostring(self.state.clientnonce));
 			if support_channel_binding then
 				if string.sub(self.state.gs2_cbind_flag, 0, 1) == "y" then
 					return "failure", "malformed-request";