summaryrefslogtreecommitdiffstats
path: root/iptables-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2013-10-09 20:54:14 +0000
committerTed Trask <ttrask01@yahoo.com>2013-10-09 20:54:14 +0000
commited4e254d9b4b16102feaab4225bb4099aa6b18fa (patch)
tree05d403f46fd20562acc3480080de663292ce9930 /iptables-model.lua
parent390f4374ef46a352d5e4f97a326214a7dfcc19b5 (diff)
downloadacf-iptables-ed4e254d9b4b16102feaab4225bb4099aa6b18fa.tar.bz2
acf-iptables-ed4e254d9b4b16102feaab4225bb4099aa6b18fa.tar.xz
Change use of require to work with Lua 5.2
Diffstat (limited to 'iptables-model.lua')
-rw-r--r--iptables-model.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/iptables-model.lua b/iptables-model.lua
index 8240e87..464cbf3 100644
--- a/iptables-model.lua
+++ b/iptables-model.lua
@@ -1,7 +1,7 @@
module(..., package.seeall)
-- Load libraries
-require("modelfunctions")
+modelfunctions = require("modelfunctions")
fs = require("acf.fs")
format = require("acf.format")
validator = require("acf.validator")