mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: remove unused one-letter loop variable [luacheck]
This commit is contained in:
parent
f710b07b55
commit
7ebb2bd493
1 changed files with 1 additions and 1 deletions
|
@ -717,7 +717,7 @@ function cert_commands.config(arg)
|
|||
else
|
||||
show_message("Please provide details to include in the certificate config file.");
|
||||
show_message("Leave the field empty to use the default value or '.' to exclude the field.")
|
||||
for i, k in ipairs(openssl._DN_order) do
|
||||
for _, k in ipairs(openssl._DN_order) do
|
||||
local v = conf.distinguished_name[k];
|
||||
if v then
|
||||
local nv;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue