From 8d181e4e4a06996bc9550cf5dee250f57fe36f5f Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 15 Oct 2025 09:21:59 -0400 Subject: [PATCH] mgmt-tester: Fix handle value Recent changes to emulator has changed the ACL handles to start at handle 0x0001 in order to use dedicated ranges for different link types. --- 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 ac27b85dd..242909117 100644 --- a/tools/mgmt-tester.c +++ b/tools/mgmt-tester.c @@ -3106,7 +3106,7 @@ static const void *pair_device_expect_param_func(uint16_t *len) static uint16_t settings_powered_bondable[] = { MGMT_OP_SET_BONDABLE, MGMT_OP_SET_POWERED, 0 }; -static uint8_t auth_req_param[] = { 0x2a, 0x00 }; +static uint8_t auth_req_param[] = { 0x01, 0x00 }; static uint8_t pair_device_pin[] = { 0x30, 0x30, 0x30, 0x30 }; /* "0000" */ static const struct generic_data pair_device_success_test_1 = { -- 2.47.3