summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudia Draghicescu <claudia.rosu@nxp.com>2023-08-22 17:29:35 +0300
committerAyush Garg <ayush.garg@samsung.com>2024-01-05 19:04:03 +0530
commit061720a6d5cc84f8d70c352ca42f82966de7ccee (patch)
tree6c9953e8050f6bf9e52aadd216477910788fae99
parent034e9cba86b908f6bc21e2e492429ba6881da99b (diff)
downloadbluez-061720a6d5cc84f8d70c352ca42f82966de7ccee.tar.gz
bluez-061720a6d5cc84f8d70c352ca42f82966de7ccee.tar.bz2
bluez-061720a6d5cc84f8d70c352ca42f82966de7ccee.zip
adapter: Fix UUID name advertised for bcast source
Fix UUID name typo.
-rw-r--r--src/adapter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/adapter.c b/src/adapter.c
index 94f1635d..ed588cc0 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -12394,7 +12394,7 @@ void btd_adapter_device_found(struct btd_adapter *adapter,
/* Monitor Devices advertising Broadcast Announcements if the
* adapter is capable of synchronizing to it.
*/
- if (eir_get_service_data(&eir_data, BAA_SERVICE_UUID) &&
+ if (eir_get_service_data(&eir_data, BCAA_SERVICE_UUID) &&
btd_adapter_has_settings(adapter,
MGMT_SETTING_ISO_SYNC_RECEIVER))
monitoring = true;