# HG changeset patch # User Kim Alvefur # Date 1357528045 -3600 # Node ID befb1923527d479f50e9d41ec13d1991cb0a2d9f # Parent ec50ad93e2802f6877fc4cc1db779076aed31c47 util.openssl: Cleanup; remove some unused variables. diff -r ec50ad93e280 -r befb1923527d util/openssl.lua --- a/util/openssl.lua Mon Jan 07 02:21:03 2013 +0100 +++ b/util/openssl.lua Mon Jan 07 04:07:25 2013 +0100 @@ -72,15 +72,11 @@ return s_format("IA5STRING:%s", s); end -local util = {}; _M.util = { utf8string = utf8string, ia5string = ia5string, }; -local function xmppAddr(t, host) -end - function ssl_config:add_dNSName(host) t_insert(self.subject_alternative_name.DNS, idna_to_ascii(host)); end @@ -95,12 +91,12 @@ s_format("%s;%s", oid_xmppaddr, utf8string(host))); end -function ssl_config:from_prosody(hosts, config, certhosts, raw) +function ssl_config:from_prosody(hosts, config, certhosts) -- TODO Decide if this should go elsewhere local found_matching_hosts = false; for i = 1,#certhosts do local certhost = certhosts[i]; - for name, host in pairs(hosts) do + for name in pairs(hosts) do if name == certhost or name:sub(-1-#certhost) == "."..certhost then found_matching_hosts = true; self:add_dNSName(name); @@ -137,7 +133,7 @@ end end end - for k,v in ipairs(o) do + for _,v in ipairs(o) do t_insert(r, ("'%s'"):format(shell_escape(tostring(v)))); end return t_concat(r, " "); @@ -145,7 +141,7 @@ local os_execute = os.execute; setmetatable(_M, { - __index=function(self,f) + __index=function(_,f) return function(opts) return 0 == os_execute(serialize(f, type(opts) == "table" and opts or {})); end;