aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/config/qos-scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-11-24 20:30:06 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-11-24 20:30:06 +0000
commitf5970b94720ce7016979ac2fd3fef50f23994740 (patch)
tree30f0cd8e296dfb6d2025300441709b0dfabf53da /package/network/config/qos-scripts
parent34e0d3cb5a9fd4b68126240a73114d0a74ab702d (diff)
downloadupstream-f5970b94720ce7016979ac2fd3fef50f23994740.tar.gz
upstream-f5970b94720ce7016979ac2fd3fef50f23994740.tar.bz2
upstream-f5970b94720ce7016979ac2fd3fef50f23994740.zip
qos-scripts: remove faulty fallback of the device variable to eth0 (#20834)
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 47629
Diffstat (limited to 'package/network/config/qos-scripts')
-rwxr-xr-xpackage/network/config/qos-scripts/files/usr/lib/qos/generate.sh2
1 files changed, 1 insertions, 1 deletions
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";;