util.openssl: remove unused one-letter loop variable [luacheck]

This commit is contained in:
Anton Shestakov 2016-07-09 13:52:04 +08:00
parent 416f381c39
commit f710b07b55

View file

@ -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);