# HG changeset patch # User Matthew Wild # Date 1223127363 -3600 # Node ID 56272224ca4c4825b892becec385abd72ad1364a # Parent 1cd2a8db392d874aa62fd4225b23eb8ec8bdd7aa Fix for using wrong auth token as username (fixes Gajim login) diff -r 1cd2a8db392d -r 56272224ca4c util/sasl.lua --- 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