From: Felix Fietkau Date: Tue, 24 Nov 2015 20:30:06 +0000 (+0000) Subject: qos-scripts: remove faulty fallback of the device variable to eth0 (#20834) X-Git-Tag: reboot~1427 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=f5970b94720ce7016979ac2fd3fef50f23994740;ds=sidebyside qos-scripts: remove faulty fallback of the device variable to eth0 (#20834) Signed-off-by: Felix Fietkau SVN-Revision: 47629 --- diff --git a/package/network/config/qos-scripts/files/usr/lib/qos/generate.sh b/package/network/config/qos-scripts/files/usr/lib/qos/generate.sh index 01f9b6b470..8d22b675c4 100755 --- a/package/network/config/qos-scripts/files/usr/lib/qos/generate.sh +++ b/package/network/config/qos-scripts/files/usr/lib/qos/generate.sh @@ -216,7 +216,7 @@ config_cb() { config_get device "$CONFIG_SECTION" device [ -z "$device" ] && { device="$(find_ifname ${CONFIG_SECTION})" - config_set "$CONFIG_SECTION" device "${device:-eth0}" + config_set "$CONFIG_SECTION" device "$device" } ;; classgroup) append CG "$CONFIG_SECTION";;