util/sasl.lua

changeset 32
a4de5ab077ab
parent 17
9a2685f39f9f
child 38
3fdfd6e0cb4e
--- 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()

mercurial