Changeset

2080:ca419b92a8c7

util.sasl: Improved a log message.
author Waqas Hussain <waqas20@gmail.com>
date Fri, 13 Nov 2009 06:29:37 +0500
parents 2079:5334723fa24d
children 2081:b9bbb709d62e 2193:8fbbdb11a520
files util/sasl.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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";