mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.openssl: remove unused one-letter loop variable [luacheck]
This commit is contained in:
parent
416f381c39
commit
f710b07b55
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ function ssl_config:serialize()
|
|||
end
|
||||
end
|
||||
elseif k == "distinguished_name" then
|
||||
for i, k in ipairs(t[1] and t or DN_order) do
|
||||
for _, k in ipairs(t[1] and t or DN_order) do
|
||||
local v = t[k];
|
||||
if v then
|
||||
s = s .. ("%s = %s\n"):format(k, v);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue