summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>2013-01-21 13:46:50 +0200
committerKaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>2013-01-21 13:46:50 +0200
commitf3eeefc9425535abe0594310b390010a3d38c322 (patch)
treefae15835f66d8855cdec010867776128e3dbb1f5
parenta7c8d0718ea806423dce46c1b0163ee058fe1037 (diff)
downloadawall-f3eeefc9425535abe0594310b390010a3d38c322.tar.bz2
awall-f3eeefc9425535abe0594310b390010a3d38c322.tar.xz
add missing local keyword into filter.lua
-rw-r--r--awall/modules/filter.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/awall/modules/filter.lua b/awall/modules/filter.lua
index b697ae5..0ce68a9 100644
--- a/awall/modules/filter.lua
+++ b/awall/modules/filter.lua
@@ -1,6 +1,6 @@
--[[
Filter module for Alpine Wall
-Copyright (C) 2012 Kaarle Ritvanen
+Copyright (C) 2012-2013 Kaarle Ritvanen
Licensed under the terms of GPL2
]]--
@@ -19,7 +19,7 @@ local combinations = awall.optfrag.combinations
local extend = awall.util.extend
-Log = awall.object.class()
+local Log = awall.object.class()
function Log:matchopts()
return self.limit and '-m limit --limit '..self.limit..'/second'