]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu: Fix incorrect command name in error messages
authorAndrea Bolognani <abologna@redhat.com>
Fri, 14 Apr 2023 08:37:10 +0000 (10:37 +0200)
committerAndrea Bolognani <abologna@redhat.com>
Fri, 14 Apr 2023 08:38:47 +0000 (10:38 +0200)
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
src/qemu/qemu_monitor_json.c

index 3b42b28fa1f096f66d6636e85571df5fe91fcdd7..b2c0b20a11eae8f8396a5cb789ee7c7b3c59bc8d 100644 (file)
@@ -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;
             }