P2P: Set p2p_persistent_group=1 at the time of reading disabled=2
Configuration file network block with disabled=2 is used for storing information about a persistent group, so p2p_persitent_group should be updated according to this when creating a struct wpa_ssid instance. This will end up using D-Bus persistent network object path for the network. Signed-off-by: Avichal Agarwal <avichal.a@samsung.com> Signed-off-by: Kyeong-Chae Lim <kcya.lim@samsung.com>
This commit is contained in:
parent
b49871ecc1
commit
5149a0f04c
1 changed files with 3 additions and 0 deletions
|
@ -136,6 +136,9 @@ static int wpa_config_validate_network(struct wpa_ssid *ssid, int line)
|
|||
wpa_config_update_psk(ssid);
|
||||
}
|
||||
|
||||
if (ssid->disabled == 2)
|
||||
ssid->p2p_persistent_group = 1;
|
||||
|
||||
if ((ssid->group_cipher & WPA_CIPHER_CCMP) &&
|
||||
!(ssid->pairwise_cipher & WPA_CIPHER_CCMP) &&
|
||||
!(ssid->pairwise_cipher & WPA_CIPHER_NONE)) {
|
||||
|
|
Loading…
Reference in a new issue