]> xenbits.xensource.com Git - libvirt.git/commitdiff
virsh: remove reference to migration in blockcopy
authorJán Tomko <jtomko@redhat.com>
Thu, 11 Oct 2012 15:14:39 +0000 (17:14 +0200)
committerEric Blake <eblake@redhat.com>
Fri, 12 Oct 2012 03:12:45 +0000 (21:12 -0600)
tools/virsh-domain.c

index 903242038bc340a26e11fd6b27da3280fb6ba231..0906267f93e3302e195a700e0de5a380af4a2675 100644 (file)
@@ -1468,13 +1468,13 @@ cmdBlockCopy(vshControl *ctl, const vshCmd *cmd)
         }
         if (vshCommandOptInt(cmd, "timeout", &timeout) > 0) {
             if (timeout < 1) {
-                vshError(ctl, "%s", _("migrate: Invalid timeout"));
+                vshError(ctl, "%s", _("invalid timeout"));
                 return false;
             }
 
             /* Ensure that we can multiply by 1000 without overflowing. */
             if (timeout > INT_MAX / 1000) {
-                vshError(ctl, "%s", _("migrate: Timeout is too big"));
+                vshError(ctl, "%s", _("timeout is too big"));
                 return false;
             }
             timeout *= 1000;