diff options
author | Tobias Markmann <tm@ayena.de> | 2009-05-15 17:28:39 +0200 |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2009-05-15 17:28:39 +0200 |
commit | b35bf3760e750fa55ea3ad5d4e97c59ba2eda9a1 (patch) | |
tree | 365c12b8bb39b081f130b16d414dab360a994af1 /util | |
parent | 11bbb47e9cf6a2c4bf0b6d3231589d13310b5d05 (diff) | |
download | prosody-b35bf3760e750fa55ea3ad5d4e97c59ba2eda9a1.tar.gz prosody-b35bf3760e750fa55ea3ad5d4e97c59ba2eda9a1.zip |
.
Diffstat (limited to 'util')
-rw-r--r-- | util/sasl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sasl.lua b/util/sasl.lua index 7a73b5bc..54715613 100644 --- a/util/sasl.lua +++ b/util/sasl.lua @@ -206,7 +206,7 @@ local function new_digest_md5(realm, password_handler) local A1 = ""; if response.authzid then if response.authzid == self.username.."@"..self.realm then - log("warn", "Client is violating XMPP RFC. See section 6.1 of RFC 3920"); + log("warn", "Client is violating XMPP RFC. See section 6.1 of RFC 3920."); A1 = Y..":"..response["nonce"]..":"..response["cnonce"]..":"..response.authzid; else A1 = "?"; |