diff options
author | Kim Alvefur <zash@zash.se> | 2016-07-13 10:25:52 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-07-13 10:25:52 +0200 |
commit | 6aab36d1ad11b6ba9fe66ecbf540028921e745fc (patch) | |
tree | 211c2095c4ed506159c6508b1a901ac0ac56af38 /util/openssl.lua | |
parent | 4616176276adc08c8ed2379bca0fada582d0cda5 (diff) | |
parent | d76cafb53946682bc1034c872bccca4f28b6696e (diff) | |
download | prosody-6aab36d1ad11b6ba9fe66ecbf540028921e745fc.tar.gz prosody-6aab36d1ad11b6ba9fe66ecbf540028921e745fc.zip |
Merge 0.10->trunk
Diffstat (limited to 'util/openssl.lua')
-rw-r--r-- | util/openssl.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/openssl.lua b/util/openssl.lua index 33234a7d..abd90a84 100644 --- a/util/openssl.lua +++ b/util/openssl.lua @@ -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); |