From 864b2d113ad0815c2444575014e7cf51498944db Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 27 Sep 2016 16:20:57 +0200 Subject: 6in4: fix invalid local variable declaration (FS#188) Remove an invalid local variable declaration in the tunnel update subshell invocation. Local declarations outside of function scopes are illegal since the Busybox update to version 1.25.0 . Signed-off-by: Jo-Philipp Wich --- package/network/ipv6/6in4/files/6in4.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/network/ipv6/6in4/files/6in4.sh') diff --git a/package/network/ipv6/6in4/files/6in4.sh b/package/network/ipv6/6in4/files/6in4.sh index c358a222fa..45d8ab75ad 100755 --- a/package/network/ipv6/6in4/files/6in4.sh +++ b/package/network/ipv6/6in4/files/6in4.sh @@ -11,7 +11,7 @@ proto_6in4_update() { sh -c ' - local timeout=5 + timeout=5 (while [ $((timeout--)) -gt 0 ]; do sleep 1 -- cgit v1.2.3