WPS 2.0: Only reject Probe Request frames from WPS 2.0 devices

This commit is contained in:
Jouni Malinen 2010-07-21 19:13:31 -07:00 committed by Jouni Malinen
parent e69b86b71d
commit 6a4477236e

View File

@ -1167,7 +1167,12 @@ int wps_validate_beacon_probe_resp(const struct wpabuf *wps_ie, int probe)
attr.authorized_macs_len, 0)) {
wpa_printf(MSG_INFO, "WPS-STRICT: Invalid %sProbe Response "
"frame", probe ? "" : "Beacon/");
#ifdef WPS_STRICT_WPS2
if (wps2)
return -1;
#else /* WPS_STRICT_WPS2 */
return -1;
#endif /* WPS_STRICT_WPS2 */
}
return 0;