From 5ba30d7295aa1090e64ed319d0fc076466be5e1f Mon Sep 17 00:00:00 2001 From: Abtin Keshavarzian Date: Tue, 23 May 2017 22:49:18 -0700 Subject: [PATCH] `NcpBase`: Fix the `isLocal` flag in `THREAD_ON_MESH_NETS` spinel response. (#1813) --- src/ncp/ncp_base.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ncp/ncp_base.cpp b/src/ncp/ncp_base.cpp index d349da188..ccf4b2378 100644 --- a/src/ncp/ncp_base.cpp +++ b/src/ncp/ncp_base.cpp @@ -2831,7 +2831,7 @@ otError NcpBase::GetPropertyHandler_THREAD_ON_MESH_NETS(uint8_t header, spinel_p 64, border_router_config.mStable, flags, - true + false )); } @@ -2859,7 +2859,7 @@ otError NcpBase::GetPropertyHandler_THREAD_ON_MESH_NETS(uint8_t header, spinel_p 64, border_router_config.mStable, flags, - false + true )); }