From eb8908bcea3ad891492864aa22e2db5e02b395c3 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Fri, 1 Jul 2011 11:33:46 +0000 Subject: [PATCH] applications/luci-splash: fix two other redundant lock wait calls --- applications/luci-splash/root/etc/init.d/luci_splash | 4 ++-- 1 file 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 -- 2.11.0