summaryrefslogtreecommitdiffstats
path: root/awall/util.lua
diff options
context:
space:
mode:
Diffstat (limited to 'awall/util.lua')
-rw-r--r--awall/util.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/awall/util.lua b/awall/util.lua
index 8963a5c..dad057e 100644
--- a/awall/util.lua
+++ b/awall/util.lua
@@ -7,7 +7,7 @@ Licensed under the terms of GPL2
module(..., package.seeall)
-local function list(var)
+function list(var)
if not var then return {} end
if type(var) ~= 'table' then return {var} end
if not next(var) then return {} end