Flags field has 32-bit size. Same issue was fixed for mgmtops in 1801a4d45d74c29cebacaab79a07e9961300be41. --- v2 -> v3: Fix another occurrence of same bug. monitor/control.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/monitor/control.c b/monitor/control.c index 159ba9d..3f5b990 100644 --- a/monitor/control.c +++ b/monitor/control.c @@ -210,7 +210,7 @@ static void mgmt_device_connected(uint16_t len, const void *buf) return; } - flags = btohs(ev->flags); + flags = btohl(ev->flags); ba2str(&ev->addr.bdaddr, str); printf("@ Device Connected: %s (%d) flags 0x%4.4x\n", @@ -357,7 +357,7 @@ static void mgmt_device_found(uint16_t len, const void *buf) return; } - flags = btohs(ev->flags); + flags = btohl(ev->flags); ba2str(&ev->addr.bdaddr, str); printf("@ Device Found: %s (%d) rssi %d flags 0x%4.4x\n", -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html