Software /
code /
prosody
Diff
util/sasl.lua @ 32:a4de5ab077ab
Fix quoting in util/sasl.lua
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 30 Sep 2008 21:35:39 +0100 |
parent | 17:9a2685f39f9f |
child | 38:3fdfd6e0cb4e |
line wrap: on
line diff
--- 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()