From eda66f7074e2ef79feed80626864eeb2a3825298 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Mon, 3 Feb 2014 07:40:43 +0200 Subject: [PATCH] tools/smp-tester: Fix expected key distribution to match latest bluetooth-next --- tools/smp-tester.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/smp-tester.c b/tools/smp-tester.c index 20429a922..b8a9d30b7 100644 --- a/tools/smp-tester.c +++ b/tools/smp-tester.c @@ -493,7 +493,7 @@ static const uint8_t smp_basic_req_1[] = { 0x01, /* Pairing Request */ 0x00, /* OOB Flag */ 0x01, /* Bonding - no MITM */ 0x10, /* Max key size */ - 0x00, /* Init. key dist. */ + 0x01, /* Init. key dist. */ 0x01, /* Rsp. key dist. */ }; static const uint8_t smp_basic_req_1_rsp[] = { 0x02, /* Pairing Response */ @@ -501,7 +501,7 @@ static const uint8_t smp_basic_req_1_rsp[] = { 0x02, /* Pairing Response */ 0x00, /* OOB Flag */ 0x01, /* Bonding - no MITM */ 0x10, /* Max key size */ - 0x00, /* Init. key dist. */ + 0x01, /* Init. key dist. */ 0x01, /* Rsp. key dist. */ }; -- 2.47.3