diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-05-20 10:46:08 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-05-20 10:46:08 +0100 |
commit | fd55f81b12c7cda5896b65fa4375480e91a1e7dd (patch) | |
tree | b4ab52ae4cf8453ce60f8962ea1cfe066671019f /net | |
parent | dbe5e5fc2baf818d01ee8e404f6e764e2db98080 (diff) | |
download | prosody-fd55f81b12c7cda5896b65fa4375480e91a1e7dd.tar.gz prosody-fd55f81b12c7cda5896b65fa4375480e91a1e7dd.zip |
net.dns: Remove redundant locals declaration
Diffstat (limited to 'net')
-rw-r--r-- | net/dns.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/dns.lua b/net/dns.lua index 24bc128f..c0de97fd 100644 --- a/net/dns.lua +++ b/net/dns.lua @@ -853,7 +853,6 @@ function resolver:lookup(qname, qtype, qclass) -- - - - - - - - - - lookup self:query (qname, qtype, qclass) while self:pulse() do local recvt = {} - local i, s for i, s in ipairs(self.socket) do recvt[i] = s end |