3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 10:29:03 +02:00

monitor: Always hexdump the raw PAE frame

This commit is contained in:
Denis Kenzior 2015-03-20 13:48:49 -05:00
parent 9318414f22
commit d277456852

View File

@ -3426,13 +3426,12 @@ void nlmon_print_pae(struct nlmon *nlmon, const struct timeval *tv,
if (size < 4)
return;
ek = eapol_key_validate(data, size);
if (!ek) {
print_hexdump(0, data, size);
return;
}
print_attr(0, "EAPoL: len %u", size);
print_hexdump(0, data, size);
ek = eapol_key_validate(data, size);
if (!ek)
return;
switch (ek->protocol_version) {
case 0x01: