1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

bug #4585: Fix PCI element in KVM deployment file

This commit is contained in:
Ruben S. Montero 2016-06-21 10:15:02 +02:00
parent ca5e7f1946
commit 6e893ffd23

View File

@ -1026,10 +1026,10 @@ int LibVirtDriver::deployment_description_kvm(
file << "\t\t\t<source>\n";
file << "\t\t\t\t<address "
<< "domain=" << one_util::escape_xml_attr("0x" + domain)
<< "bus=" << one_util::escape_xml_attr("0x" + bus)
<< "slot=" << one_util::escape_xml_attr("0x" + slot)
<< "function=" << one_util::escape_xml_attr("0x" + func)
<< " domain=" << one_util::escape_xml_attr("0x" + domain)
<< " bus=" << one_util::escape_xml_attr("0x" + bus)
<< " slot=" << one_util::escape_xml_attr("0x" + slot)
<< " function=" << one_util::escape_xml_attr("0x" + func)
<< "/>\n";
file << "\t\t\t</source>\n";