Browse Source

WPS: Fix strict validation of (Re)Association Response

This frame is supposed to include Response Type, not Request Type
attribute.
Jouni Malinen 14 years ago
parent
commit
82fb18472e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/wps/wps_validate.c

+ 1 - 1
src/wps/wps_validate.c

@@ -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");