From f079edb01387b6965a62f22e74a5452022fc374e Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 13 Mar 2009 18:44:15 -0300 Subject: Don't hide temporary devices on Adapter.ListDevices method. Adapter.ListDevices should be consistent with Adapter.Devices property. --- src/adapter.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/adapter.c b/src/adapter.c index 69774406..d9844452 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -1441,9 +1441,6 @@ static DBusMessage *list_devices(DBusConnection *conn, for (l = adapter->devices; l; l = l->next) { struct btd_device *device = l->data; - if (device_is_temporary(device)) - continue; - dev_path = device_get_path(device); dbus_message_iter_append_basic(&array_iter, -- cgit