mod_firewall: Pass results as arguments to format instead of shadowning variable [luacheck]
authorKim Alvefur <zash@zash.se>
Fri, 11 Mar 2016 18:19:59 +0100
changeset 2079 baa1cb349427
parent 2078 86427261e3c4
child 2080 d2ad556dcfb7
mod_firewall: Pass results as arguments to format instead of shadowning variable [luacheck]
mod_firewall/conditions.lib.lua
--- a/mod_firewall/conditions.lib.lua	Fri Mar 11 18:18:35 2016 +0100
+++ b/mod_firewall/conditions.lib.lua	Fri Mar 11 18:19:59 2016 +0100
@@ -95,8 +95,7 @@
 
 function condition_handlers.INSPECT(path)
 	if path:find("=") then
-		local path, match = path:match("(.-)=(.*)");
-		return ("stanza:find(%q) == %q"):format(path, match);
+		return ("stanza:find(%q) == %q"):format(path:match("(.-)=(.*)"));
 	end
 	return ("stanza:find(%q)"):format(path);
 end