mod_firewall/conditions.lib.lua
changeset 997 69dd4e4e54a2
parent 979 cec42f884475
child 2040 7ba6ed553c93
--- a/mod_firewall/conditions.lib.lua	Tue May 07 09:28:20 2013 +0100
+++ b/mod_firewall/conditions.lib.lua	Tue May 07 09:31:57 2013 +0100
@@ -113,7 +113,6 @@
 
 local function current_time_check(op, hour, minute)
 	hour, minute = tonumber(hour), tonumber(minute);
-	local s = "";
 	local adj_op = op == "<" and "<" or ">="; -- Start time inclusive, end time exclusive
 	if minute == 0 then
 		return "(current_hour"..adj_op..hour..")";