# HG changeset patch
# User Tobias Markmann <tm@ayena.de>
# Date 1295279421 -3600
# Node ID 574e91531994bf597975f349a05fa8cdb656d0d8
# Parent  fa8cfe830fefca1c5dc8ef2b92aeff6b39a5c134
util.sasl.scram: Remove some debugging output.

diff -r fa8cfe830fef -r 574e91531994 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";