From: Claudio Takahasi <claudio.takahasi@xxxxxxxxxxxxx> This patch removes the hard-coded address type for the BLE device created from the storage. --- src/adapter.c | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/adapter.c b/src/adapter.c index dafe595..18dd5b6 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -1940,13 +1940,17 @@ static void create_stored_device_from_primary(char *key, char *value, struct btd_adapter *adapter = user_data; struct btd_device *device; GSList *services, *uuids, *l; + char address[18]; + uint8_t bdaddr_type; + + if (sscanf(key, "%17s#%hhu", address, &bdaddr_type) < 2) + return; if (g_slist_find_custom(adapter->devices, - key, (GCompareFunc) device_address_cmp)) + address, (GCompareFunc) device_address_cmp)) return; - /* FIXME: Get the correct LE addr type (public/random) */ - device = device_create(connection, adapter, key, BDADDR_LE_PUBLIC); + device = device_create(connection, adapter, address, bdaddr_type); if (!device) return; -- 1.7.7.6 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html