mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-11 07:17:44 +00:00
Fix USB device path formatting mixup
* src/util/hostusb.c: The device path for a USB device wants the bus/device IDs in decimal not octal
This commit is contained in:
parent
c31a116b72
commit
823a684f8d
@ -184,7 +184,7 @@ usbGetDevice(unsigned bus,
|
||||
snprintf(dev->name, sizeof(dev->name), "%.3o:%.3o",
|
||||
dev->bus, dev->dev);
|
||||
snprintf(dev->path, sizeof(dev->path),
|
||||
USB_DEVFS "%03o/%03o", dev->bus, dev->dev);
|
||||
USB_DEVFS "%03d/%03d", dev->bus, dev->dev);
|
||||
|
||||
/* XXX fixme. this should be product/vendor */
|
||||
snprintf(dev->id, sizeof(dev->id), "%d %d", dev->bus, dev->dev);
|
||||
|
Loading…
Reference in New Issue
Block a user