diff options
author | David S. Miller <davem@davemloft.net> | 2020-08-03 18:00:22 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-08-03 18:00:22 -0700 |
commit | ee494f42a356527c73b0a5f63c8b95656240f47c (patch) | |
tree | c5807a1511b97c1b6838be8c74e3699a167fffc1 /net/mac80211/agg-rx.c | |
parent | 01f4d47a5b55a8b6cc053a7516ad976ad45534ce (diff) | |
parent | 0b91111fb1a164fedbb68a9263afafd10ffa6ec3 (diff) | |
download | linux-ee494f42a356527c73b0a5f63c8b95656240f47c.tar.bz2 |
Merge tag 'mac80211-next-for-davem-2020-08-03' of git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next
Johannes Berg says:
====================
A few more changes, notably:
* handle new SAE (WPA3 authentication) status codes in the correct way
* fix a while that should be an if instead, avoiding infinite loops
* handle beacon filtering changing better
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mac80211/agg-rx.c')
-rw-r--r-- | net/mac80211/agg-rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/agg-rx.c b/net/mac80211/agg-rx.c index 7f245e9f114c..313ba97acae3 100644 --- a/net/mac80211/agg-rx.c +++ b/net/mac80211/agg-rx.c @@ -477,7 +477,7 @@ void ieee80211_process_addba_request(struct ieee80211_local *local, size_t len) { u16 capab, tid, timeout, ba_policy, buf_size, start_seq_num; - struct ieee802_11_elems elems = { 0 }; + struct ieee802_11_elems elems = { }; u8 dialog_token; int ies_len; |