WPS: Fix strict validation of (Re)Association Response

This frame is supposed to include Response Type, not Request Type
attribute.
This commit is contained in:
Jouni Malinen 2010-09-22 11:13:18 -07:00 committed by Jouni Malinen
parent 0e2e565a44
commit 82fb18472e

View file

@ -1275,7 +1275,7 @@ int wps_validate_assoc_resp(const struct wpabuf *wps_ie)
wps2 = attr.version2 != NULL;
if (wps_validate_version(attr.version, 1) ||
wps_validate_request_type(attr.request_type, 1) ||
wps_validate_response_type(attr.response_type, 1) ||
wps_validate_version2(attr.version2, wps2)) {
wpa_printf(MSG_INFO, "WPS-STRICT: Invalid (Re)Association "
"Response frame");