From 3b9b74994686644d55b861ccc0999597fda835e6 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Mon, 28 Mar 2011 15:42:23 +0300 Subject: [PATCH] Fix LMP version string in hciconfig Previously the HCI version was reported instead of the LMP one. Reported-by: Arno Willig --- tools/hciconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/hciconfig.c b/tools/hciconfig.c index aa6d00968..3db70a418 100644 --- a/tools/hciconfig.c +++ b/tools/hciconfig.c @@ -1138,7 +1138,7 @@ static void cmd_version(int ctl, int hdev, char *opt) } hciver = hci_vertostr(ver.hci_ver); - lmpver = lmp_vertostr(ver.hci_ver); + lmpver = lmp_vertostr(ver.lmp_ver); print_dev_hdr(&di); printf("\tHCI Version: %s (0x%x) Revision: 0x%x\n" -- 2.47.3