WPS: Added more verbose debug info on authentication type mismatch
This commit is contained in:
parent
30f5c941aa
commit
79d7d8efe7
1 changed files with 2 additions and 1 deletions
|
@ -1420,7 +1420,8 @@ static int wps_process_auth_type_flags(struct wps_data *wps, const u8 *auth)
|
||||||
wps->auth_type = wps->wps->auth_types & auth_types;
|
wps->auth_type = wps->wps->auth_types & auth_types;
|
||||||
if (wps->auth_type == 0) {
|
if (wps->auth_type == 0) {
|
||||||
wpa_printf(MSG_DEBUG, "WPS: No match in supported "
|
wpa_printf(MSG_DEBUG, "WPS: No match in supported "
|
||||||
"authentication types");
|
"authentication types (own 0x%x Enrollee 0x%x)",
|
||||||
|
wps->wps->auth_types, auth_types);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue