FT RRB: Remove confusing debug print about extra data
The "FT: Ignore extra data in end" hexdump is quite confusing since it shows all the IEs that were actually either processed or forwarded. There is no code path that could reach this debug print with actual real extra data. Remove it and the dead increment of pos to avoid warnings from static analyzers. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
9dd5373122
commit
153333ef6b
1 changed files with 0 additions and 6 deletions
|
@ -4572,7 +4572,6 @@ int wpa_ft_rrb_rx(struct wpa_authenticator *wpa_auth, const u8 *src_addr,
|
|||
return -1;
|
||||
}
|
||||
status_code = WPA_GET_LE16(pos);
|
||||
pos += 2;
|
||||
|
||||
wpa_printf(MSG_DEBUG, "FT: FT Packet Type - Response "
|
||||
"(status_code=%d)", status_code);
|
||||
|
@ -4585,11 +4584,6 @@ int wpa_ft_rrb_rx(struct wpa_authenticator *wpa_auth, const u8 *src_addr,
|
|||
return -1;
|
||||
}
|
||||
|
||||
if (end > pos) {
|
||||
wpa_hexdump(MSG_DEBUG, "FT: Ignore extra data in end",
|
||||
pos, end - pos);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue