aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/util.c
diff options
context:
space:
mode:
authorJouni Malinen <jouni.malinen@atheros.com>2009-01-19 11:48:46 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-01-29 16:00:53 -0500
commitf797eb7e2903571e9c0e7e5d64113f51209f8dc4 (patch)
tree15522a18521aa5acf4fc2bd68d1cc24d67f00a1e /net/mac80211/util.c
parentbb2becac91f13e862d4601a8c5364bc758c35b8e (diff)
mac80211: Fix MFP Association Comeback to use Timeout Interval IE
The separate Association Comeback Time IE was removed from IEEE 802.11w and the Timeout Interval IE (from IEEE 802.11r) is used instead. The editing on this is still somewhat incomplete in IEEE 802.11w/D7.0, but still, the use of Timeout Interval IE is the expected mechanism. Signed-off-by: Jouni Malinen <jouni.malinen@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/util.c')
-rw-r--r--net/mac80211/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/util.c b/net/mac80211/util.c
index 963e0473205c..3f559e3d0a7c 100644
--- a/net/mac80211/util.c
+++ b/net/mac80211/util.c
@@ -653,9 +653,9 @@ void ieee802_11_parse_elems(u8 *start, size_t len,
653 elems->pwr_constr_elem = pos; 653 elems->pwr_constr_elem = pos;
654 elems->pwr_constr_elem_len = elen; 654 elems->pwr_constr_elem_len = elen;
655 break; 655 break;
656 case WLAN_EID_ASSOC_COMEBACK_TIME: 656 case WLAN_EID_TIMEOUT_INTERVAL:
657 elems->assoc_comeback = pos; 657 elems->timeout_int = pos;
658 elems->assoc_comeback_len = elen; 658 elems->timeout_int_len = elen;
659 break; 659 break;
660 default: 660 default:
661 break; 661 break;