net.adns: Import setmetatable into a local (fixes traceback on Lua 5.2)

This commit is contained in:
Kim Alvefur 2017-09-27 17:34:54 +02:00
parent e1a94acbb9
commit 78dd613bca

View file

@ -12,6 +12,7 @@ local new_resolver = require "net.dns".resolver;
local log = require "util.logger".init("adns");
local coroutine, tostring, pcall = coroutine, tostring, pcall;
local setmetatable = setmetatable;
local function dummy_send(sock, data, i, j) return (j-i)+1; end