From 3cad7aca5fb820cde0c1ae9d878691c8a39939bf Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Fri, 7 Mar 2014 11:28:28 +0200 Subject: [PATCH] tools/mgmt-tester: Fix own_addr_type for non-connectable advertising Newer kernels always a private address for non-connectable advertising. --- 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 23447224f..a3c1c72d4 100644 --- a/tools/mgmt-tester.c +++ b/tools/mgmt-tester.c @@ -743,7 +743,7 @@ static uint8_t set_connectable_off_adv_param[] = { 0x00, 0x08, /* min_interval */ 0x00, 0x08, /* max_interval */ 0x03, /* type */ - 0x00, /* own_addr_type */ + 0x01, /* own_addr_type */ 0x00, /* direct_addr_type */ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* direct_addr */ 0x07, /* channel_map */ -- 2.47.3