# HG changeset patch # User Matthew Wild # Date 1222806939 -3600 # Node ID a4de5ab077ab8c103526c71ef30dd3bd5753a1fb # Parent aaccbf07849b16d03e360ab67404ae293b529381 Fix quoting in util/sasl.lua diff -r aaccbf07849b -r a4de5ab077ab util/sasl.lua --- a/util/sasl.lua Tue Sep 30 21:20:55 2008 +0100 +++ b/util/sasl.lua Tue Sep 30 21:35:39 2008 +0100 @@ -10,9 +10,9 @@ if (stanza.name ~= "response") then self.onFail() end if (stanza.attr.xmlns ~= "urn:ietf:params:xml:ns:xmpp-sasl") then self.onFail() end local response = base64.decode(stanza.tag[1]) - local authorization = string.match(response, [[([^&\0]+)]]) - local authentication = string.match(response, [[\0([^&\0]+)\0]]) - local password = string.match(response, [[\0[^&\0]+\0([^&\0]+)]]) + local authorization = string.match(response, "([^&\0]+)") + local authentication = string.match(response, "\0([^&\0]+)\0") + local password = string.match(response, "\0[^&\0]+\0([^&\0]+)") if self.onAuth(authorization, password) == true then self.onWrite(stanza.stanza("success", {xmlns = "urn:ietf:params:xml:ns:xmpp-sasl"})) self.onSuccess()