Diff

util/sasl.lua @ 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
parent 38:3fdfd6e0cb4e
child 276:30893439d5d1
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