# HG changeset patch # User Matthew Wild # Date 1367915517 -3600 # Node ID 69dd4e4e54a207e6599354de6b4d1130b5df07dc # Parent 37af655ca575dceb0eb915580daef76161839a92 mod_firewall/conditions: Remove unused variable diff -r 37af655ca575 -r 69dd4e4e54a2 mod_firewall/conditions.lib.lua --- 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..")";