node_device: udev: Fix PCI product/vendor swappage

Product and vendor values were swapped in the XML, which made virt-manager
PCI device listing kinda useless.
This commit is contained in:
Cole Robinson 2010-05-11 14:44:34 -04:00
parent e8a1a730fe
commit 74c7a3463d

View File

@ -382,8 +382,8 @@ static int udevTranslatePCIIds(unsigned int vendor,
/* pci_get_strings returns void */
pci_get_strings(&m,
&vendor_name,
&device_name,
&vendor_name,
NULL,
NULL);