diff options
author | Kim Alvefur <zash@zash.se> | 2019-07-30 02:36:15 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-07-30 02:36:15 +0200 |
commit | bf79ad07b26e43fe579a8761865f61e74cc682b9 (patch) | |
tree | 9ffaea0c7d0a04ce93a84404d4395d98aa4fc8c2 /net/adns.lua | |
parent | 2fb3c3041d82abe4b51cd03f210881c52fd53b03 (diff) | |
download | prosody-bf79ad07b26e43fe579a8761865f61e74cc682b9.tar.gz prosody-bf79ad07b26e43fe579a8761865f61e74cc682b9.zip |
net.adns: Remove unused local [luacheck]
Diffstat (limited to 'net/adns.lua')
-rw-r--r-- | net/adns.lua | 2 |
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 |