From 298bb340b2eea44f10de6efe45f361f9f6893a12 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 30 Sep 2008 21:35:39 +0100 Subject: Fix quoting in util/sasl.lua --- util/sasl.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'util/sasl.lua') diff --git a/util/sasl.lua b/util/sasl.lua index fb3aff94..0d7740c8 100644 --- a/util/sasl.lua +++ b/util/sasl.lua @@ -10,9 +10,9 @@ function sasl:new_plain(onAuth, onSuccess, onFail, onWrite) 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() -- cgit v1.2.3