mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-16 15:34:53 +08:00
core/device: Fix marking auto-connect flag
Device auto-connect shall be set only if the profile is able to accept incoming connections, this fixes the wrong behavior or connecting LE with dual mode devices immediatelly after probing service as profiles may have auto-connect flag for outgoing connection (usually BR/EDR only).
This commit is contained in:
parent
0e12a4bbc9
commit
89ca735e57
@ -4080,7 +4080,10 @@ static struct btd_service *probe_service(struct btd_device *device,
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (profile->auto_connect)
|
||||
/* Only set auto connect if profile has set the flag and can really
|
||||
* accept connections.
|
||||
*/
|
||||
if (profile->auto_connect && profile->accept)
|
||||
device_set_auto_connect(device, TRUE);
|
||||
|
||||
return service;
|
||||
|
Loading…
Reference in New Issue
Block a user