util.sasl: Improved a log message.
authorWaqas Hussain <waqas20@gmail.com>
Fri, 13 Nov 2009 06:29:37 +0500
changeset 2080 ca419b92a8c7
parent 2079 5334723fa24d
child 2081 b9bbb709d62e
child 2193 8fbbdb11a520
util.sasl: Improved a log message.
util/sasl.lua
--- a/util/sasl.lua	Fri Nov 13 06:10:46 2009 +0500
+++ b/util/sasl.lua	Fri Nov 13 06:29:37 2009 +0500
@@ -205,7 +205,7 @@
 			if response.authzid then
 				if response.authzid == self.username or response.authzid == self.username.."@"..self.realm then
 					-- COMPAT
-					log("warn", "Client is violating XMPP RFC. See section 6.1 of RFC 3920.");
+					log("warn", "Client is violating RFC 3920 (section 6.1, point 7).");
 					A1 = Y..":"..response["nonce"]..":"..response["cnonce"]..":"..response.authzid;
 				else
 					return "failure", "invalid-authzid";