Such using params->wpa_ie to figure out whether the connection is for
WPA/WPA2 is not correct since that buffer is used also to add WPS IE. In
case of WPS, do not add NL80211_ATTR_WPA_VERSIONS to avoid confusing
drivers.
NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
skip_auth_type:
- if (params->wpa_ie && params->wpa_ie_len) {
+ if (params->wpa_ie && params->wpa_ie_len &&
+ params->key_mgmt_suite != KEY_MGMT_WPS) {
enum nl80211_wpa_versions ver;
if (params->wpa_ie[0] == WLAN_EID_RSN)