mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-03 03:25:20 +00:00
qemu: Fix incorrect command name in error messages
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
This commit is contained in:
parent
ebd004a03d
commit
194cfb44e7
@ -4813,7 +4813,7 @@ int qemuMonitorJSONGetMachines(qemuMonitor *mon,
|
|||||||
if (virJSONValueObjectHasKey(child, "numa-mem-supported")) {
|
if (virJSONValueObjectHasKey(child, "numa-mem-supported")) {
|
||||||
if (virJSONValueObjectGetBoolean(child, "numa-mem-supported", &info->numaMemSupported) < 0) {
|
if (virJSONValueObjectGetBoolean(child, "numa-mem-supported", &info->numaMemSupported) < 0) {
|
||||||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
||||||
_("qemu-machines reply has malformed "
|
_("query-machines reply has malformed "
|
||||||
"'numa-mem-supported' data"));
|
"'numa-mem-supported' data"));
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
@ -4841,7 +4841,7 @@ int qemuMonitorJSONGetMachines(qemuMonitor *mon,
|
|||||||
|
|
||||||
if (virJSONValueObjectGetBoolean(child, "acpi", &acpi) < 0) {
|
if (virJSONValueObjectGetBoolean(child, "acpi", &acpi) < 0) {
|
||||||
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
||||||
_("qemu-machines reply has malformed 'acpi data"));
|
_("query-machines reply has malformed 'acpi data"));
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user