diff options
author | Sven Eckelmann <sven.eckelmann@openmesh.com> | 2018-05-14 14:45:25 +0200 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2018-05-14 19:07:37 +0200 |
commit | ba5ec6b77c94a21bbd78b66c63317a4ff9b62962 (patch) | |
tree | 4065ee7ccf439da285f7e1b9c3dcd92b3efb732f /package/network/services/hostapd/Makefile | |
parent | 547042398afac3ce702adab28c753e7c9ebed452 (diff) | |
download | upstream-ba5ec6b77c94a21bbd78b66c63317a4ff9b62962.tar.gz upstream-ba5ec6b77c94a21bbd78b66c63317a4ff9b62962.tar.bz2 upstream-ba5ec6b77c94a21bbd78b66c63317a4ff9b62962.zip |
hostapd: fix VHT80 for encrypted mesh channel settings
The max_oper_chwidth settings was parsed incorrectly for big endian system.
This prevented the system to switch to VHT80 (or VHT160). Instead they were
mapped to:
* HT20: 20MHz
* VHT20: 20MHz
* HT40: 40MHz
* VHT40: 40MHz
* VHT80: 40MHz
* VHT160: 40MHz
This happened because each max_oper_chwidth setting in the config file was
parsed as "0" instead of the actual value.
Fixes: a4322eba2b12 ("hostapd: fix encrypted mesh channel settings")
Signed-off-by: Sven Eckelmann <sven.eckelmann@openmesh.com>
Diffstat (limited to 'package/network/services/hostapd/Makefile')
-rw-r--r-- | package/network/services/hostapd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/hostapd/Makefile b/package/network/services/hostapd/Makefile index 0adb7c9ef7..ed9bcfc3d9 100644 --- a/package/network/services/hostapd/Makefile +++ b/package/network/services/hostapd/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=hostapd -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_SOURCE_URL:=http://w1.fi/hostap.git PKG_SOURCE_PROTO:=git |