util/jid.lua
changeset 369 42de92add67b
parent 368 34e88709b1b5
child 384 4542bcdb7f55
--- a/util/jid.lua	Fri Nov 21 05:06:35 2008 +0000
+++ b/util/jid.lua	Fri Nov 21 05:07:41 2008 +0000
@@ -5,11 +5,11 @@
 
 function split(jid)
 	if not jid then return; end
-	local node, nodelen = match(jid, "^([^@]+)@()");
-	local host, hostlen = match(jid, "^([^@/]+)()", nodelen)
+	local node, nodepos = match(jid, "^([^@]+)@()");
+	local host, hostpos = match(jid, "^([^@/]+)()", nodepos)
 	if node and not host then return nil, nil, nil; end
-	local resource = match(jid, "^/(.+)$", hostlen);
-	if (not host) or ((not resource) and #jid >= hostlen) then return nil, nil, nil; end
+	local resource = match(jid, "^/(.+)$", hostpos);
+	if (not host) or ((not resource) and #jid >= hostpos) then return nil, nil, nil; end
 	return node, host, resource;
 end