mwan3: fix mwan3_connected ubus output

During the renameing of mwan3_connected_v4 to mwan3_connected_ipv4 and
mwan3_connected_v6 to mwan3_connected_ipv6 the adjustment in the ubus
call was forgotten. This commit fixes this.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
(cherry picked from commit a56e111c49)
This commit is contained in:
Florian Eckert 2023-09-12 16:03:16 +02:00
parent 12d65dece1
commit 09f044f981
2 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=mwan3
PKG_VERSION:=2.11.7
PKG_VERSION:=2.11.8
PKG_RELEASE:=1
PKG_MAINTAINER:=Florian Eckert <fe@dev.tdt.de>, \
Aaron Goodman <aaronjg@alumni.stanford.edu>

View File

@ -8,8 +8,8 @@
report_connected_v4() {
local address
if [ -n "$($IPT4 -S mwan3_connected 2> /dev/null)" ]; then
for address in $($IPS -o save list mwan3_connected_v4 | grep add | cut -d " " -f 3); do
if [ -n "$($IPT4 -S mwan3_connected_ipv4 2> /dev/null)" ]; then
for address in $($IPS -o save list mwan3_connected_ipv4 | grep add | cut -d " " -f 3); do
json_add_string "" "${address}"
done
fi
@ -19,8 +19,8 @@ report_connected_v6() {
[ $NO_IPV6 -ne 0 ] && return
local address
if [ -n "$($IPT6 -S mwan3_connected 2> /dev/null)" ]; then
for address in $($IPS -o save list mwan3_connected_v6 | grep add | cut -d " " -f 3); do
if [ -n "$($IPT6 -S mwan3_connected_ipv6 2> /dev/null)" ]; then
for address in $($IPS -o save list mwan3_connected_ipv6 | grep add | cut -d " " -f 3); do
json_add_string "" "${address}"
done
fi