diff options
author | John Crispin <john@openwrt.org> | 2014-01-12 12:07:15 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-01-12 12:07:15 +0000 |
commit | c1a2a87f3ab0950e60d6fce90e8d34b64b56f82d (patch) | |
tree | b63df5f9fa3f9e079e1136efe3c7ca50af363204 /package/kernel | |
parent | 2f9048d8d38a7747f1bb3b7be7509b5e8d7132c2 (diff) | |
download | mtk-20170518-c1a2a87f3ab0950e60d6fce90e8d34b64b56f82d.zip mtk-20170518-c1a2a87f3ab0950e60d6fce90e8d34b64b56f82d.tar.gz mtk-20170518-c1a2a87f3ab0950e60d6fce90e8d34b64b56f82d.tar.bz2 |
netifd: fix mac80211.sh to respect setting of mcast_rate
This patch fixes a bug in /lib/netifd/wireless/mac80211.sh, where
the UCI setting of wireless multicast traffic (in uci: mcast_rate)
is not respected within netifd. Especially in Freifunk mesh networks
the olsr routing as effected by this, as only the lowest mcast_rate
was used, even when uci ncast_rate was set to something else.
In function mac80211_setup_adhoc() the value of mcast_rate is missing
in json_get_vars.
Signed-off-by: Thomas Huehn <thomas@net.t-labs.tu-berlin.de>
SVN-Revision: 39232
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh index 12c256e..1896fe0 100644 --- a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh +++ b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh @@ -241,7 +241,7 @@ mac80211_setup_supplicant() { } mac80211_setup_adhoc() { - json_get_vars bssid ssid basic_rate key + json_get_vars bssid ssid basic_rate key mcast_rate keyspec= [ "$auth_type" == "wep" ] && { |