diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-11-16 03:10:56 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-11-16 03:10:56 +0000 |
commit | 77a96c54371bb0f47d2e0d187b53b1b7dc63e885 (patch) | |
tree | f75dc7eaabf7bd7baacc8cc8440484d88d3666e2 /package/hostapd/patches/001-remove-michael-mic.patch | |
parent | 6fe9aab05af416e345d4a741f278dcb394490302 (diff) | |
download | upstream-77a96c54371bb0f47d2e0d187b53b1b7dc63e885.tar.gz upstream-77a96c54371bb0f47d2e0d187b53b1b7dc63e885.tar.bz2 upstream-77a96c54371bb0f47d2e0d187b53b1b7dc63e885.zip |
fix up hostapd for mac80211
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9554 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/hostapd/patches/001-remove-michael-mic.patch')
-rw-r--r-- | package/hostapd/patches/001-remove-michael-mic.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/package/hostapd/patches/001-remove-michael-mic.patch b/package/hostapd/patches/001-remove-michael-mic.patch new file mode 100644 index 0000000000..de76c06930 --- /dev/null +++ b/package/hostapd/patches/001-remove-michael-mic.patch @@ -0,0 +1,18 @@ +--- + hostapd/driver_devicescape.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- hostap.orig/hostapd/driver_devicescape.c 2007-11-09 13:41:08.000000000 +0100 ++++ hostap/hostapd/driver_devicescape.c 2007-11-09 13:41:12.000000000 +0100 +@@ -1386,10 +1386,10 @@ static void handle_frame(struct hostapd_ + case ieee80211_msg_wep_frame_unknown_key: + ieee802_11_rx_unknown_key(hapd, buf, data_len); + return; +- */ + case ieee80211_msg_michael_mic_failure: + hostapd_michael_mic_failure(hapd, buf, data_len); + return; ++ */ + /* + * TODO + * We should be telling them to go away. But we don't support that now. |