P2P: Fix WSC IE not to include two Device Name attrs with WPS 2.0 is used
This commit is contained in:
parent
d5b20a73b2
commit
48e4377093
1 changed files with 2 additions and 0 deletions
|
@ -488,10 +488,12 @@ struct wpabuf * wps_build_probe_req_ie(int pbc, struct wps_device_data *dev,
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef CONFIG_WPS2
|
||||||
if (dev->p2p && wps_build_dev_name(dev, ie)) {
|
if (dev->p2p && wps_build_dev_name(dev, ie)) {
|
||||||
wpabuf_free(ie);
|
wpabuf_free(ie);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
#endif /* CONFIG_WPS2 */
|
||||||
|
|
||||||
return wps_ie_encapsulate(ie);
|
return wps_ie_encapsulate(ie);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue