aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-04-05 13:06:26 +0100
committerMatthew Wild <mwild1@gmail.com>2013-04-05 13:06:26 +0100
commit4624a05183e166674f7520c264129b698126e59f (patch)
treef844680a5fbcb9b0799257c96f87b6d9d2ed17bb /core
parentc84e9926d2d60a8587c1e57daa37baad489585b5 (diff)
downloadprosody-4624a05183e166674f7520c264129b698126e59f.tar.gz
prosody-4624a05183e166674f7520c264129b698126e59f.zip
portmanager: import pairs() (thanks Maranda)
Diffstat (limited to 'core')
-rw-r--r--core/portmanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/portmanager.lua b/core/portmanager.lua
index 1b3740cf..1b767a09 100644
--- a/core/portmanager.lua
+++ b/core/portmanager.lua
@@ -9,7 +9,7 @@ local set = require "util.set";
local table = table;
local setmetatable, rawset, rawget = setmetatable, rawset, rawget;
-local type, tonumber, tostring, ipairs = type, tonumber, tostring, ipairs;
+local type, tonumber, tostring, ipairs, pairs = type, tonumber, tostring, ipairs, pairs;
local prosody = prosody;
local fire_event = prosody.events.fire_event;