diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2021-03-26 10:18:56 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2021-03-26 10:18:56 +0000 |
commit | fbbf791c7dce322ccf03d99a2525266cddcad98d (patch) | |
tree | 0ddaae12afba745397a7f27fad316dea50593f36 /sys/net80211 | |
parent | a4b2eaaaccfe23f497f471d03a0cfae99b3707be (diff) |
Fix wrong sequence number wrap in ieee80211_recv_auth().
IEEE 802.11 sequence numbers wrap around at 0xfff, not 0xffff.
ok phessler@ kevlo@
Diffstat (limited to 'sys/net80211')
-rw-r--r-- | sys/net80211/ieee80211_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net80211/ieee80211_input.c b/sys/net80211/ieee80211_input.c index e6a38d62f51..a2de00f7bcd 100644 --- a/sys/net80211/ieee80211_input.c +++ b/sys/net80211/ieee80211_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_input.c,v 1.231 2021/03/23 12:03:44 stsp Exp $ */ +/* $OpenBSD: ieee80211_input.c,v 1.232 2021/03/26 10:18:55 stsp Exp $ */ /*- * Copyright (c) 2001 Atsushi Onoe @@ -2040,7 +2040,7 @@ ieee80211_recv_auth(struct ieee80211com *ic, struct mbuf *m, /* XXX hack to workaround calling convention */ IEEE80211_SEND_MGMT(ic, ni, IEEE80211_FC0_SUBTYPE_AUTH, - IEEE80211_STATUS_ALG << 16 | ((seq + 1) & 0xffff)); + IEEE80211_STATUS_ALG << 16 | ((seq + 1) & 0xfff)); } #endif return; |