]> xenbits.xensource.com Git - libvirt.git/commitdiff
qemu: fix typos in qemu_monitor_text.c
authorOsier Yang <jyang@redhat.com>
Fri, 12 Nov 2010 23:08:24 +0000 (07:08 +0800)
committerEric Blake <eblake@redhat.com>
Tue, 16 Nov 2010 16:26:54 +0000 (09:26 -0700)
* src/qemu/qemu_monitor_text.c (qemuMonitorTextChangeMedia)

src/qemu/qemu_monitor_text.c

index 25521110e2f3e7c3c067dd2329ddfcad6f89254b..64ec57bdcde8367c1e6dc8924b3b7a98d80869cc 100644 (file)
@@ -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;
     }