From 017ceeaa17d26be60dd28776c423b513736cbc13 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 7 Feb 2014 16:28:36 +0200 Subject: [PATCH] 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. --- src/device.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/device.c b/src/device.c index 2c2223d..738128f 100644 --- a/src/device.c +++ b/src/device.c @@ -1299,7 +1299,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) { @@ -1312,9 +1311,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)) -- 2.7.4