summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-splash/luasrc/controller
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2008-08-06 20:11:15 +0000
committerSteven Barth <steven@midlink.org>2008-08-06 20:11:15 +0000
commit76982655fa433edd885bbb80bbe74e82fca527e2 (patch)
tree98b1f8cfff0bedaf13795779710123f0194dffc1 /applications/luci-splash/luasrc/controller
parentb1b0c085de7483c5a778f0056a97da14e87b7f16 (diff)
Moved luci.sys.exec, luci.sys.execl and luci.sys.bigendian to luci.util
Diffstat (limited to 'applications/luci-splash/luasrc/controller')
-rw-r--r--applications/luci-splash/luasrc/controller/splash/splash.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-splash/luasrc/controller/splash/splash.lua b/applications/luci-splash/luasrc/controller/splash/splash.lua
index 7dbf488a4..dbd266f46 100644
--- a/applications/luci-splash/luasrc/controller/splash/splash.lua
+++ b/applications/luci-splash/luasrc/controller/splash/splash.lua
@@ -10,7 +10,7 @@ end
function action_dispatch()
local mac = luci.sys.net.ip4mac(luci.http.getenv("REMOTE_ADDR")) or ""
- local status = luci.sys.execl("luci-splash status "..mac)[1]
+ local status = luci.util.execl("luci-splash status "..mac)[1]
if #mac > 0 and ( status == "whitelisted" or status == "lease" ) then
luci.http.redirect(luci.dispatcher.build_url())
else