Fix compiler warnings on supplicant build with PASN but no FILS

Get rid of unused variables and functions.

Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2024-01-13 22:49:13 +02:00
parent 8e8964cdbd
commit e0a2b3222d

View file

@ -426,6 +426,7 @@ static void wpas_pasn_delete_peers(struct wpa_supplicant *wpa_s,
} }
#ifdef CONFIG_FILS
static void wpas_pasn_initiate_eapol(struct pasn_data *pasn, static void wpas_pasn_initiate_eapol(struct pasn_data *pasn,
struct wpa_ssid *ssid) struct wpa_ssid *ssid)
{ {
@ -443,6 +444,7 @@ static void wpas_pasn_initiate_eapol(struct pasn_data *pasn,
eapol_sm_notify_config(pasn->eapol, &ssid->eap, &eapol_conf); eapol_sm_notify_config(pasn->eapol, &ssid->eap, &eapol_conf);
} }
#endif /* CONFIG_FILS */
static void wpas_pasn_reset(struct wpa_supplicant *wpa_s) static void wpas_pasn_reset(struct wpa_supplicant *wpa_s)
@ -509,8 +511,10 @@ static void wpas_pasn_auth_start_cb(struct wpa_radio_work *work, int deinit)
struct wpa_ssid *ssid; struct wpa_ssid *ssid;
struct wpa_bss *bss; struct wpa_bss *bss;
const u8 *rsne, *rsnxe; const u8 *rsne, *rsnxe;
#ifdef CONFIG_FILS
const u8 *indic; const u8 *indic;
u16 fils_info; u16 fils_info;
#endif /* CONFIG_FILS */
u16 capab = 0; u16 capab = 0;
bool derive_kdk; bool derive_kdk;
int ret; int ret;