mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.ip: rename variable (i is already defined) [luacheck]
This commit is contained in:
parent
b1cda68544
commit
1e78e0f236
1 changed files with 2 additions and 2 deletions
|
@ -58,8 +58,8 @@ local function toBits(ip)
|
|||
for _ = 1, 4 - field:len() do
|
||||
result = result .. "0000";
|
||||
end
|
||||
for i = 1, field:len() do
|
||||
result = result .. hex2bits[field:sub(i,i)];
|
||||
for j = 1, field:len() do
|
||||
result = result .. hex2bits[field:sub(j, j)];
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue