]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix error messages in qemu text monitor
authorJiri Denemark <jdenemar@redhat.com>
Mon, 15 Mar 2010 13:01:20 +0000 (14:01 +0100)
committerJiri Denemark <jdenemar@redhat.com>
Mon, 15 Mar 2010 14:10:27 +0000 (15:10 +0100)
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
src/qemu/qemu_monitor_text.c

index e629c6bd9b71f428f967b1a610228db76641380e..b7c41a1c465637d686c8696cab4d7ef447d43093 100644 (file)
@@ -939,7 +939,7 @@ static int qemuMonitorTextSaveMemory(qemuMonitorPtr mon,
 
     if (qemuMonitorCommand(mon, cmd, &reply) < 0) {
         qemuReportError(VIR_ERR_OPERATION_FAILED,
-                        _("could save memory region to '%s'"), path);
+                        _("could not save memory region to '%s'"), path);
         goto cleanup;
     }
 
@@ -986,7 +986,7 @@ int qemuMonitorTextSetMigrationSpeed(qemuMonitorPtr mon,
 
     if (qemuMonitorCommand(mon, cmd, &info) < 0) {
         qemuReportError(VIR_ERR_OPERATION_FAILED,
-                        "%s", _("could restrict migration speed"));
+                        "%s", _("could not restrict migration speed"));
         goto cleanup;
     }