common: Log the USB Manufacturer ID too.

This commit is contained in:
Solomon Peachy 2013-07-06 21:05:00 -04:00
parent fec7e6d776
commit b4b2b4c00f
1 changed files with 2 additions and 2 deletions

View File

@ -194,10 +194,10 @@ static int print_scan_output(struct libusb_device *device,
if (!strlen((char*)serial))
strcpy((char*)serial, "NONE");
DEBUG("%s%sPID: %04X Product: '%s' Serial: '%s'\n",
DEBUG("%s%sPID: %04X Manuf: '%s' Product: '%s' Serial: '%s'\n",
(!valid) ? "UNRECOGNIZED: " : "",
match ? "MATCH: " : "",
desc->idProduct, product, serial);
desc->idProduct, manuf, product, serial);
if (valid && scan_only) {
/* URL-ify model. */