diff options
author | Steven Barth <steven@midlink.org> | 2008-08-17 10:20:36 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-08-17 10:20:36 +0000 |
commit | 75d4cca7ae10a39d9787afd5f1c2f14800491acd (patch) | |
tree | d78aa1fec1690510ed723f6c8433f71fda709e28 /applications/luci-splash/root/usr/bin | |
parent | 746fa9df8f3d3443d82cd26d6717e7b5cf3dc8c1 (diff) |
Fixed a design flaw in luci.model.uci
Diffstat (limited to 'applications/luci-splash/root/usr/bin')
-rwxr-xr-x | applications/luci-splash/root/usr/bin/luci-splashd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-splash/root/usr/bin/luci-splashd b/applications/luci-splash/root/usr/bin/luci-splashd index e8c275209e..3e0c938ebd 100755 --- a/applications/luci-splash/root/usr/bin/luci-splashd +++ b/applications/luci-splash/root/usr/bin/luci-splashd @@ -4,7 +4,7 @@ require("socket") require("luci.ip") require("luci.model.uci") -luci.model.uci.set_savedir(luci.model.uci.savedir_state) +luci.model.uci.load_state("network") local server = socket.bind("0.0.0.0", arg[1] or 8082) server:settimeout(0, "t") |