diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-08-14 20:01:41 +0300 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2009-08-14 20:01:41 +0300 |
commit | fe6bdb777efa124cad355230cebe782e6d89722b (patch) | |
tree | e05f384ce2748fe5410886a36c20db2eb8a1f37b /hostapd/wpa_ft.c | |
parent | e7cd16cac575c4be48fab45b7dddabb086472bf0 (diff) | |
download | external_wpa_supplicant_8_ti-fe6bdb777efa124cad355230cebe782e6d89722b.zip external_wpa_supplicant_8_ti-fe6bdb777efa124cad355230cebe782e6d89722b.tar.gz external_wpa_supplicant_8_ti-fe6bdb777efa124cad355230cebe782e6d89722b.tar.bz2 |
Replace NEED_MLME with NEED_AP_MLME
This makes it clearer that it's about the AP, not client-side MLME, even
when built into the client (wpa_supplicant).
Diffstat (limited to 'hostapd/wpa_ft.c')
-rw-r--r-- | hostapd/wpa_ft.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hostapd/wpa_ft.c b/hostapd/wpa_ft.c index b3801ff..115f1fc 100644 --- a/hostapd/wpa_ft.c +++ b/hostapd/wpa_ft.c @@ -526,7 +526,7 @@ static u8 * wpa_ft_process_rdie(u8 *pos, u8 *end, u8 id, u8 descr_count, return pos; } -#ifdef NEED_MLME +#ifdef NEED_AP_MLME if (parse.wmm_tspec) { struct wmm_tspec_element *tspec; int res; @@ -562,7 +562,7 @@ static u8 * wpa_ft_process_rdie(u8 *pos, u8 *end, u8 id, u8 descr_count, } return pos; } -#endif /* NEED_MLME */ +#endif /* NEED_AP_MLME */ wpa_printf(MSG_DEBUG, "FT: No supported resource requested"); rdie->status_code = host_to_le16(WLAN_STATUS_UNSPECIFIED_FAILURE); |