From: Jouni Malinen Date: Sun, 6 Dec 2015 10:53:24 +0000 (+0200) Subject: FST: Print debug entry on MB IE update based on EVENT_AUTH X-Git-Tag: hostap_2_6~1225 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=58059e6c0ce6d23c8d90094b3b5f9caec975e70c;p=thirdparty%2Fhostap.git FST: Print debug entry on MB IE update based on EVENT_AUTH This is more consistent with all the other callers of wpas_fst_update_mbie(). Signed-off-by: Jouni Malinen --- diff --git a/wpa_supplicant/events.c b/wpa_supplicant/events.c index 5afe94f1b..3ca4c3f6a 100644 --- a/wpa_supplicant/events.c +++ b/wpa_supplicant/events.c @@ -3325,7 +3325,10 @@ void wpa_supplicant_event(void *ctx, enum wpa_event_type event, switch (event) { case EVENT_AUTH: #ifdef CONFIG_FST - wpas_fst_update_mbie(wpa_s, data->auth.ies, data->auth.ies_len); + if (!wpas_fst_update_mbie(wpa_s, data->auth.ies, + data->auth.ies_len)) + wpa_printf(MSG_DEBUG, + "FST: MB IEs updated from auth IE"); #endif /* CONFIG_FST */ sme_event_auth(wpa_s, data); break;