aboutsummaryrefslogtreecommitdiffstats
path: root/net/adns.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-07-30 02:36:15 +0200
committerKim Alvefur <zash@zash.se>2019-07-30 02:36:15 +0200
commitbf79ad07b26e43fe579a8761865f61e74cc682b9 (patch)
tree9ffaea0c7d0a04ce93a84404d4395d98aa4fc8c2 /net/adns.lua
parent2fb3c3041d82abe4b51cd03f210881c52fd53b03 (diff)
downloadprosody-bf79ad07b26e43fe579a8761865f61e74cc682b9.tar.gz
prosody-bf79ad07b26e43fe579a8761865f61e74cc682b9.zip
net.adns: Remove unused local [luacheck]
Diffstat (limited to 'net/adns.lua')
-rw-r--r--net/adns.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/adns.lua b/net/adns.lua
index 5050c23b..d7266958 100644
--- a/net/adns.lua
+++ b/net/adns.lua
@@ -11,7 +11,7 @@ local new_resolver = require "net.dns".resolver;
local log = require "util.logger".init("adns");
-local coroutine, tostring, pcall = coroutine, tostring, pcall;
+local coroutine, pcall = coroutine, pcall;
local setmetatable = setmetatable;
local function dummy_send(sock, data, i, j) return (j-i)+1; end -- luacheck: ignore 212