diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-07-01 11:33:46 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-07-01 11:33:46 +0000 |
commit | eb8908bcea3ad891492864aa22e2db5e02b395c3 (patch) | |
tree | f63381590c0a3165141a21174765e3ec37884a7a /applications/luci-splash/root | |
parent | a0001338e8e684e2fa916311d73e86f203d3b442 (diff) |
applications/luci-splash: fix two other redundant lock wait calls
Diffstat (limited to 'applications/luci-splash/root')
-rwxr-xr-x | applications/luci-splash/root/etc/init.d/luci_splash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-splash/root/etc/init.d/luci_splash b/applications/luci-splash/root/etc/init.d/luci_splash index 285471773..e4980d968 100755 --- a/applications/luci-splash/root/etc/init.d/luci_splash +++ b/applications/luci-splash/root/etc/init.d/luci_splash @@ -161,7 +161,7 @@ EOF } start() { - lock -w $LOCK && lock $LOCK + lock $LOCK include /lib/network scan_interfaces @@ -238,7 +238,7 @@ start() { } stop() { - lock -w $LOCK && lock $LOCK + lock $LOCK include /lib/network scan_interfaces |