aboutsummaryrefslogtreecommitdiffstats
path: root/util/sasl.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-11-13 06:29:37 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-11-13 06:29:37 +0500
commit8fc8a263c6ab7c2595693764f46e366084d72a55 (patch)
tree95af25e8632c85e94442b209e39c7e723b0c64d7 /util/sasl.lua
parentd8063b7436ced6108cb9023a0f7597030e63d70a (diff)
downloadprosody-8fc8a263c6ab7c2595693764f46e366084d72a55.tar.gz
prosody-8fc8a263c6ab7c2595693764f46e366084d72a55.zip
util.sasl: Improved a log message.
Diffstat (limited to 'util/sasl.lua')
-rw-r--r--util/sasl.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sasl.lua b/util/sasl.lua
index 1a0b4e2f..b6fc6d66 100644
--- a/util/sasl.lua
+++ b/util/sasl.lua
@@ -205,7 +205,7 @@ local function new_digest_md5(realm, credentials_handler)
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";