From: Florian Eckert Date: Tue, 14 Jul 2020 09:47:15 +0000 (+0200) Subject: mwan3: fix shellcheck warning SC2166 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=7d0f2cdb63b389828dc85802d5cc8e7f762db1b8;p=feed%2Fpackages.git mwan3: fix shellcheck warning SC2166 Replace -o boolean check with ||. Signed-off-by: Florian Eckert (cherry picked from commit c0fdfaa17490f5e67bc24a326f10af1c7d0201cf) --- diff --git a/net/mwan3/files/lib/mwan3/mwan3.sh b/net/mwan3/files/lib/mwan3/mwan3.sh index 3c4f25cc40..6c8e500800 100644 --- a/net/mwan3/files/lib/mwan3/mwan3.sh +++ b/net/mwan3/files/lib/mwan3/mwan3.sh @@ -1067,7 +1067,7 @@ mwan3_report_iface_status() IPT="$IPT6" fi - if [ -z "$id" -o -z "$device" ]; then + if [ -z "$id" ] || [ -z "$device" ]; then result="offline" elif [ -n "$($IP rule | awk '$1 == "'$(($id+1000)):'"')" ] && \ [ -n "$($IP rule | awk '$1 == "'$(($id+2000)):'"')" ] && \