diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-07-10 12:29:27 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-07-10 12:29:27 +0000 |
commit | c4eb977caff4f3a4dabe96944aa538354c2ea7ac (patch) | |
tree | e6c7c193adaced7064209c95d169853c82fb0d84 /package/kernel | |
parent | 738111041cc27dff8d2dc8c22e61209b1c753ed8 (diff) | |
download | upstream-c4eb977caff4f3a4dabe96944aa538354c2ea7ac.tar.gz upstream-c4eb977caff4f3a4dabe96944aa538354c2ea7ac.tar.bz2 upstream-c4eb977caff4f3a4dabe96944aa538354c2ea7ac.zip |
mac80211: Fix config variable name for dtim_period
The vif option dtim_period was accidently renamed dtim_interval in r38988
("netifd: add wireless configuration support and port mac80211 to the new
framework"). This is wrong and makes the dtim_period/dtim_interval a dead
option because the rest of the config generation code still uses dtim_period.
Reported-by: Jeppe Ledet-Pedersen <jlp@steinwurf.com>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41557 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 a9f9db1eb4..64b0f989b7 100644 --- a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh +++ b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh @@ -53,7 +53,7 @@ drv_mac80211_init_iface_config() { config_add_boolean wds powersave config_add_int maxassoc config_add_int max_listen_int - config_add_int dtim_interval + config_add_int dtim_period # mesh config_add_string mesh_id |