From: Jiri Denemark Date: Mon, 15 Mar 2010 13:01:20 +0000 (+0100) Subject: Fix error messages in qemu text monitor X-Git-Tag: v0.8.0~297 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e6458393abfe94d4728cce99428df41a61e10d66;p=thirdparty%2Flibvirt.git Fix error messages in qemu text monitor Signed-off-by: Jiri Denemark --- diff --git a/src/qemu/qemu_monitor_text.c b/src/qemu/qemu_monitor_text.c index e629c6bd9b..b7c41a1c46 100644 --- a/src/qemu/qemu_monitor_text.c +++ b/src/qemu/qemu_monitor_text.c @@ -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; }