From: Inga Stotland Date: Thu, 9 Jan 2020 17:44:09 +0000 (-0800) Subject: tools/mesh: Fix check condition for model ID X-Git-Tag: accepted/tizen/unified/20200129.022701~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F28%2F222928%2F1;p=platform%2Fupstream%2Fbluez.git tools/mesh: Fix check condition for model ID Use the value of VENDOR_ID_MASK to set/check vendor model and SIG model IDs Change-Id: I15a39ea0795fda273b5040db5e3dcc2fcdf5bdea Signed-off-by: Abhay Agarwal --- diff --git a/tools/mesh/cfgcli.c b/tools/mesh/cfgcli.c index 782a71b..50d2ce7 100644 --- a/tools/mesh/cfgcli.c +++ b/tools/mesh/cfgcli.c @@ -247,7 +247,7 @@ static uint32_t print_mod_id(uint8_t *data, bool vid, const char *offset) if (!vid) { mod_id = get_le16(data); bt_shell_printf("%sModel Id\t%4.4x\n", offset, mod_id); - mod_id = 0xffff0000 | mod_id; + mod_id = VENDOR_ID_MASK | mod_id; } else { mod_id = get_le16(data + 2); bt_shell_printf("%sModel Id\t%4.4x %4.4x\n", offset, @@ -327,7 +327,7 @@ static void print_pub(uint16_t ele_addr, uint32_t mod_id, bt_shell_printf("\tElement: %4.4x\n", ele_addr); bt_shell_printf("\tPub Addr: %4.4x\n", pub->u.addr16); - if (mod_id > 0xffff0000) + if (mod_id < VENDOR_ID_MASK) bt_shell_printf("\tModel: %8.8x\n", mod_id); else bt_shell_printf("\tModel: %4.4x\n",