diff --git a/src/device.c b/src/device.c
index c4b5554..7b44e27 100644
--- a/src/device.c
+++ b/src/device.c
sdp_list_free(records, (sdp_free_func_t) sdp_record_free);
}
-static void services_changed(struct btd_device *device)
+static void uuids_changed(struct btd_device *device)
{
DBusConnection *conn = get_dbus_connection();
char **uuids;
device_remove_drivers(device, req->profiles_removed);
/* Propagate services changes */
- services_changed(req->device);
+ uuids_changed(req->device);
send_reply:
if (!req->msg)
if (device->attios == NULL && device->attios_offline == NULL)
attio_cleanup(device);
- services_changed(device);
+ uuids_changed(device);
if (req->msg)
create_device_reply(device, req);
g_slist_free(uuid_list);
store_profiles(device);
- services_changed(device);
+ uuids_changed(device);
}
const sdp_record_t *btd_device_get_record(struct btd_device *device,