Diff between 4d155a809b12c5642a5c538aeb83c991e52bb449 and 2bad4b65458f6a158c56602e5cf713c8715e956d

Changed Files

File Additions Deletions Status
mgmt/main.c +3 -2 modified

Full Patch

diff --git a/mgmt/main.c b/mgmt/main.c
index 225ed74..cd4b698 100644
--- a/mgmt/main.c
+++ b/mgmt/main.c
@@ -501,10 +501,11 @@ static int mgmt_device_found(int mgmt_sk, uint16_t index,
 		char addr[18];
 		ba2str(&ev->addr.bdaddr, addr);
 		printf("hci%u dev_found: %s type %s class 0x%02x%02x%02x "
-			"rssi %d eir (%s)\n", index, addr,
+			"rssi %d confirm_name %u eir (%s)\n", index, addr,
 			typestr(ev->addr.type),
 			ev->dev_class[2], ev->dev_class[1], ev->dev_class[0],
-			ev->rssi, ev->eir[0] == 0 ? "no" : "yes");
+			ev->rssi, ev->confirm_name,
+			ev->eir[0] == 0 ? "no" : "yes");
 	}
 
 	return 0;