# HG changeset patch # User Matthew Wild # Date 1227244061 0 # Node ID 42de92add67bbe5cd8daf4e1988fdb6b76ec2af7 # Parent 34e88709b1b50930e19f4a539ea715e67cf77fed Better names for variables diff -r 34e88709b1b5 -r 42de92add67b util/jid.lua --- 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