Changeset

50:56272224ca4c

Fix for using wrong auth token as username (fixes Gajim login)
author Matthew Wild <mwild1@gmail.com>
date Sat, 04 Oct 2008 14:36:03 +0100
parents 49:1cd2a8db392d
children 52:93e468eb2ffb
files util/sasl.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/util/sasl.lua	Sat Oct 04 02:43:23 2008 +0100
+++ b/util/sasl.lua	Sat Oct 04 14:36:03 2008 +0100
@@ -19,7 +19,7 @@
 						local authorization = s_match(response, "([^&%z]+)")
 						local authentication = s_match(response, "%z([^&%z]+)%z")
 						local password = s_match(response, "%z[^&%z]+%z([^&%z]+)")
-						if self.onAuth(authorization, password) == true then
+						if self.onAuth(authentication, password) == true then
 							self.onWrite(st.stanza("success", {xmlns = "urn:ietf:params:xml:ns:xmpp-sasl"}))
 							self.onSuccess(authentication)
 						else