From: Jouni Malinen Date: Wed, 28 Sep 2022 21:03:27 +0000 (+0300) Subject: wlantest: Print the TA of a Beacon frame for which there is no BIGTK X-Git-Tag: hostap_2_11~1675 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c1231c05a67c14af1db0d243279a7934c0f73c2;p=thirdparty%2Fhostap.git wlantest: Print the TA of a Beacon frame for which there is no BIGTK This makes the debug message more useful for determining whether an expected BIGTK has been derived. Signed-off-by: Jouni Malinen --- diff --git a/wlantest/rx_mgmt.c b/wlantest/rx_mgmt.c index 3372fd708..030f1c827 100644 --- a/wlantest/rx_mgmt.c +++ b/wlantest/rx_mgmt.c @@ -125,7 +125,9 @@ static void rx_mgmt_beacon(struct wlantest *wt, const u8 *data, size_t len) wpa_hexdump(MSG_MSGDUMP, "MME MIC", mme + 8, mic_len); if (!bss->igtk_len[keyid]) { - add_note(wt, MSG_DEBUG, "No BIGTK known to validate BIP frame"); + add_note(wt, MSG_DEBUG, + "No BIGTK known to validate BIP frame from " MACSTR, + MAC2STR(mgmt->sa)); return; }