Diff between 8ad1f97f4171e45e1ee1035818d8de3064b51168 and ed9ee7da438e3111e13bef73329626740ce8c5c6

Changed Files

File Additions Deletions Status
src/adapter.c +4 -0 modified

Full Patch

diff --git a/src/adapter.c b/src/adapter.c
index 754966e..43a9a3a 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -750,6 +750,10 @@ static bool is_supported_uuid(const uuid_t *uuid)
 {
 	uuid_t tmp;
 
+	/* mgmt versions from 1.3 onwards support all types of UUIDs */
+	if (MGMT_VERSION(mgmt_version, mgmt_revision) >= MGMT_VERSION(1, 3))
+		return true;
+
 	uuid_to_uuid128(&tmp, uuid);
 
 	if (!sdp_uuid128_to_uuid(&tmp))