diff options
author | Anton Shestakov <av6@dwimlabs.net> | 2016-07-09 13:52:57 +0800 |
---|---|---|
committer | Anton Shestakov <av6@dwimlabs.net> | 2016-07-09 13:52:57 +0800 |
commit | 7ebb2bd49371e1d8f3f1382a3883e3570de2543d (patch) | |
tree | 568c7cf90fe4e426d27fd62f8b5c32eeded573fb | |
parent | f710b07b55aacbd2b375a6a04251565ee4f58936 (diff) | |
download | prosody-7ebb2bd49371e1d8f3f1382a3883e3570de2543d.tar.gz prosody-7ebb2bd49371e1d8f3f1382a3883e3570de2543d.zip |
prosodyctl: remove unused one-letter loop variable [luacheck]
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 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; |