From: Osier Yang Date: Fri, 12 Nov 2010 23:08:24 +0000 (+0800) Subject: qemu: fix typos in qemu_monitor_text.c X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5483745534807967b1ed89fdee3b1e550156d81e;p=libvirt.git qemu: fix typos in qemu_monitor_text.c * src/qemu/qemu_monitor_text.c (qemuMonitorTextChangeMedia) --- diff --git a/src/qemu/qemu_monitor_text.c b/src/qemu/qemu_monitor_text.c index 25521110e2..64ec57bdcd 100644 --- a/src/qemu/qemu_monitor_text.c +++ b/src/qemu/qemu_monitor_text.c @@ -906,7 +906,7 @@ int qemuMonitorTextChangeMedia(qemuMonitorPtr mon, if (qemuMonitorCommand(mon, cmd, &reply) < 0) { qemuReportError(VIR_ERR_OPERATION_FAILED, - _("could not eject media on %s"), devname); + _("could not change media on %s"), devname); goto cleanup; } @@ -915,7 +915,7 @@ int qemuMonitorTextChangeMedia(qemuMonitorPtr mon, * No message is printed on success it seems */ if (strstr(reply, "device ")) { qemuReportError(VIR_ERR_OPERATION_FAILED, - _("could not eject media on %s: %s"), devname, reply); + _("could not change media on %s: %s"), devname, reply); goto cleanup; }