aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-04-06 01:42:35 +0200
committerKim Alvefur <zash@zash.se>2018-04-06 01:42:35 +0200
commit345cf801b80f16cc28c00cc7d558d62fafde2c77 (patch)
tree91ebc48c1faf1b19d1247ed690b86a87d7402d42 /net
parentb7505b1535107d29c3b1dc0ee3d259d1920c312e (diff)
downloadprosody-345cf801b80f16cc28c00cc7d558d62fafde2c77.tar.gz
prosody-345cf801b80f16cc28c00cc7d558d62fafde2c77.zip
net.http: Import setmetatable into local scope (fixes #1125)
Diffstat (limited to 'net')
-rw-r--r--net/http.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/http.lua b/net/http.lua
index cc67a45c..effb0ef5 100644
--- a/net/http.lua
+++ b/net/http.lua
@@ -22,6 +22,7 @@ local pairs = pairs;
local tonumber, tostring, xpcall, traceback =
tonumber, tostring, xpcall, debug.traceback;
local error = error
+local setmetatable = setmetatable;
local log = require "util.logger".init("http");