From a82cde983a9dce2884598628ffa975244016358d Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Thu, 24 Jan 2013 13:46:30 +0200 Subject: [PATCH] tools: Fix multiple UUID expected EIR data New kernels add the UUIDs to EIR in the same order that they were added through mgmt (instead of the inverse which older kernels do). --- tools/mgmt-tester.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c index bf61f9df4..84aa49df6 100644 --- a/tools/mgmt-tester.c +++ b/tools/mgmt-tester.c @@ -814,7 +814,7 @@ static const char write_eir_uuid16_hci[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; static const char write_eir_multi_uuid16_hci[] = { 0x00, - 0x02, 0x0a, 0x00, 0x05, 0x03, 0x03, 0x11, 0x01, + 0x02, 0x0a, 0x00, 0x05, 0x03, 0x01, 0x11, 0x03, 0x11, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -- 2.47.3