From: Andrea Bolognani Date: Fri, 14 Apr 2023 08:37:10 +0000 (+0200) Subject: qemu: Fix incorrect command name in error messages X-Git-Tag: v9.3.0-rc1~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=194cfb44e77ce25d99240f24321559f569251e68;p=thirdparty%2Flibvirt.git qemu: Fix incorrect command name in error messages Signed-off-by: Andrea Bolognani --- diff --git a/src/qemu/qemu_monitor_json.c b/src/qemu/qemu_monitor_json.c index 3b42b28fa1..b2c0b20a11 100644 --- a/src/qemu/qemu_monitor_json.c +++ b/src/qemu/qemu_monitor_json.c @@ -4813,7 +4813,7 @@ int qemuMonitorJSONGetMachines(qemuMonitor *mon, if (virJSONValueObjectHasKey(child, "numa-mem-supported")) { if (virJSONValueObjectGetBoolean(child, "numa-mem-supported", &info->numaMemSupported) < 0) { virReportError(VIR_ERR_INTERNAL_ERROR, "%s", - _("qemu-machines reply has malformed " + _("query-machines reply has malformed " "'numa-mem-supported' data")); goto cleanup; } @@ -4841,7 +4841,7 @@ int qemuMonitorJSONGetMachines(qemuMonitor *mon, if (virJSONValueObjectGetBoolean(child, "acpi", &acpi) < 0) { virReportError(VIR_ERR_INTERNAL_ERROR, "%s", - _("qemu-machines reply has malformed 'acpi data")); + _("query-machines reply has malformed 'acpi data")); goto cleanup; }