summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-02-07 16:28:36 +0200
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2016-01-28 14:00:40 +0200
commite4246e5fc2a3a9a2b5d5e226795a4b191397efb4 (patch)
tree41d84acab05e3abb4b9d42787e19af44228c432b
parentff711b5320389ba152a651465c44ed6c521e52f8 (diff)
downloadbluez-e4246e5fc2a3a9a2b5d5e226795a4b191397efb4.tar.gz
core/device: Use service auto_connect flag
This make use of service auto_connect flag to determine if the service should be included in the list to be connected.
-rw-r--r--src/device.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/device.c b/src/device.c
index 57c441bcf..efae9fe06 100644
--- a/src/device.c
+++ b/src/device.c
@@ -1645,7 +1645,6 @@ static int service_prio_cmp(gconstpointer a, gconstpointer b)
static GSList *create_pending_list(struct btd_device *dev, const char *uuid)
{
struct btd_service *service;
- struct btd_profile *p;
GSList *l;
if (uuid) {
@@ -1658,9 +1657,8 @@ static GSList *create_pending_list(struct btd_device *dev, const char *uuid)
for (l = dev->services; l != NULL; l = g_slist_next(l)) {
service = l->data;
- p = btd_service_get_profile(service);
- if (!p->auto_connect)
+ if (!btd_service_get_auto_connect(service))
continue;
if (g_slist_find(dev->pending, service))