aboutsummaryrefslogtreecommitdiffstats
path: root/util/sslconfig.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2015-05-06 19:43:28 +0100
committerMatthew Wild <mwild1@gmail.com>2015-05-06 19:43:28 +0100
commit780449308902bb4a37f0470d6b8b50bb19261258 (patch)
treeaf0628e48cdf0b6c038588969228fdee9e39e446 /util/sslconfig.lua
parent75c8b77900bb4efc7e495993a9669d7b0bd67340 (diff)
downloadprosody-780449308902bb4a37f0470d6b8b50bb19261258.tar.gz
prosody-780449308902bb4a37f0470d6b8b50bb19261258.zip
util.sslconfig: Rename variable to avoid name clash [luacheck]
Diffstat (limited to 'util/sslconfig.lua')
-rw-r--r--util/sslconfig.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/sslconfig.lua b/util/sslconfig.lua
index 98e61341..42ce37d7 100644
--- a/util/sslconfig.lua
+++ b/util/sslconfig.lua
@@ -6,11 +6,11 @@ local id = function (v) return v end
function handlers.options(a, k, b)
local o = a[k] or { };
if type(b) ~= "table" then b = { b } end
- for k,v in pairs(b) do
- if v == true or v == false then
- o[k] = v;
+ for key, value in pairs(b) do
+ if value == true or value == false then
+ o[key] = value;
else
- o[v] = true;
+ o[value] = true;
end
end
a[k] = o;