aboutsummaryrefslogtreecommitdiffstats
path: root/util/multitable.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-04 19:57:05 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-04 19:57:05 +0100
commit2fff09895975e5b2fb3d0aee38c2f652c6029e15 (patch)
treef0e16c01357473480d90a6d4726094fbb3aa30ec /util/multitable.lua
parent9817a326507ae8127365578adfac7a9074fe48c1 (diff)
parentef5e994b1f4303d7940194fc980f5b5e94654c76 (diff)
downloadprosody-2fff09895975e5b2fb3d0aee38c2f652c6029e15.tar.gz
prosody-2fff09895975e5b2fb3d0aee38c2f652c6029e15.zip
Merge with 0.4
Diffstat (limited to 'util/multitable.lua')
-rw-r--r--util/multitable.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/multitable.lua b/util/multitable.lua
index c0bb2205..d1858d8f 100644
--- a/util/multitable.lua
+++ b/util/multitable.lua
@@ -56,7 +56,7 @@ local function r(t, n, _end, ...)
return;
end
if k then
- v = t[k];
+ local v = t[k];
if v then
r(v, n+1, _end, ...);
if not next(v) then
@@ -96,7 +96,7 @@ local function s(t, n, results, _end, ...)
return;
end
if k then
- v = t[k];
+ local v = t[k];
if v then
s(v, n+1, results, _end, ...);
end