mcastmngr: Fix typo in Broadcom snooping.

This commit is contained in:
Markus Gothe 2024-04-05 15:49:34 +02:00 committed by Rahul Thakur
parent c0a6739981
commit 65fbf9958d

View file

@ -49,7 +49,7 @@ config_snooping_upstream_interface() {
*.*)
port="$(echo "$dev" | cut -d'.' -f 1)"
if [ $port == $ethwan ]; then
ifconfig $dev | grep RUNNING >/dev/null && $snooping_upstream_intf="$dev" && break
ifconfig $dev | grep RUNNING >/dev/null && snooping_upstream_intf="$dev" && break
fi
;;
esac