From ffa3a8e9b0fad746a50faf3c2a11b4e92b3d7092 Mon Sep 17 00:00:00 2001 From: Adrian Schmutzler Date: Sun, 10 May 2020 16:47:49 +0200 Subject: netifd: replace backticks by $(...) This replaces deprecated backticks by more versatile $(...) syntax. Signed-off-by: Adrian Schmutzler --- .../config/netifd/files/etc/hotplug.d/net/20-smp-packet-steering | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/network/config/netifd/files/etc/hotplug.d') diff --git a/package/network/config/netifd/files/etc/hotplug.d/net/20-smp-packet-steering b/package/network/config/netifd/files/etc/hotplug.d/net/20-smp-packet-steering index 9d7aaae0ac..ce5e76096a 100644 --- a/package/network/config/netifd/files/etc/hotplug.d/net/20-smp-packet-steering +++ b/package/network/config/netifd/files/etc/hotplug.d/net/20-smp-packet-steering @@ -14,7 +14,7 @@ find_irq_cpu() { [ -n "$match" ] && { set -- $match shift - for cur in `seq 1 $NPROCS`; do + for cur in $(seq 1 $NPROCS); do [ "$1" -gt 0 ] && { cpu=$(($cur - 1)) break -- cgit v1.2.3