From b8c3fcd3d7c9b057d98c4f645d220d12ae2e2202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Dalleau?= Date: Wed, 26 Jul 2017 10:16:41 +0200 Subject: [PATCH] monitor: Fix OOB information bit in mesh oob table The bit 15 should be used for 'On device'. --- monitor/packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monitor/packet.c b/monitor/packet.c index 387be1dcb..f72fcab6a 100644 --- a/monitor/packet.c +++ b/monitor/packet.c @@ -3514,7 +3514,7 @@ static const struct { { 12, "Inside box" }, { 13, "On piece of paper" }, { 14, "Inside manual" }, - { 14, "On device" }, + { 15, "On device" }, { } }; -- 2.47.3