summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-10-03 12:42:13 +0000
committerTed Trask <ttrask01@yahoo.com>2008-10-03 12:42:13 +0000
commit9815d806cc53c6f2bf0154f6fa3bc4fbccaaacd9 (patch)
tree5f8f7bd95ef86c171a50422a78eba77ee3559100
parentbead940829930379aeabae0f2a99aaffa90540cc (diff)
downloadacf-shorewall-9815d806cc53c6f2bf0154f6fa3bc4fbccaaacd9.tar.bz2
acf-shorewall-9815d806cc53c6f2bf0154f6fa3bc4fbccaaacd9.tar.xz
Modified format library. parse_configfile2, update_configfile2, get_section, and set_section became parse_ini_file, update_ini_file, get_ini_section, and set_ini_section. Updated all code that used these functions.
git-svn-id: svn://svn.alpinelinux.org/acf/shorewall/trunk@1539 ab2d0c66-481e-0410-8bed-d214d4d58bed
-rw-r--r--shorewall-model.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/shorewall-model.lua b/shorewall-model.lua
index f6a2527..0130b78 100644
--- a/shorewall-model.lua
+++ b/shorewall-model.lua
@@ -198,7 +198,7 @@ function configcheck ()
end
function getlogfile ()
- local logfilepath = format.parse_configfile2(fs.read_file(configfile),"","LOGFILE") or ""
+ local logfilepath = format.parse_ini_file(fs.read_file(configfile),"","LOGFILE") or ""
return cfe({ value=logfilepath, label="Shorewall logfile" })
end