mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: don't use "for s,s in pairs..." (unused loop variable s) [luacheck]
This commit is contained in:
parent
a70183bcec
commit
8320418d38
1 changed files with 2 additions and 2 deletions
|
@ -1011,7 +1011,7 @@ end
|
|||
|
||||
|
||||
function resolver.print(response) -- - - - - - - - - - - - - resolver.print
|
||||
for s,s in pairs { 'id', 'qr', 'opcode', 'aa', 'tc', 'rd', 'ra', 'z',
|
||||
for _, s in pairs { 'id', 'qr', 'opcode', 'aa', 'tc', 'rd', 'ra', 'z',
|
||||
'rcode', 'qdcount', 'ancount', 'nscount', 'arcount' } do
|
||||
print( string.format('%-30s', 'header.'..s), response.header[s], hint(response.header, s) );
|
||||
end
|
||||
|
@ -1024,7 +1024,7 @@ function resolver.print(response) -- - - - - - - - - - - - - resolver.print
|
|||
|
||||
local common = { name=1, type=1, class=1, ttl=1, rdlength=1, rdata=1 };
|
||||
local tmp;
|
||||
for s,s in pairs({'answer', 'authority', 'additional'}) do
|
||||
for _, s in pairs({'answer', 'authority', 'additional'}) do
|
||||
for i,rr in pairs(response[s]) do
|
||||
for j,t in pairs({ 'name', 'type', 'class', 'ttl', 'rdlength' }) do
|
||||
tmp = string.format('%s[%i].%s', s, i, t);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue