From: Ján Tomko Date: Thu, 11 Oct 2012 15:14:39 +0000 (+0200) Subject: virsh: remove reference to migration in blockcopy X-Git-Tag: v1.0.0-rc1~128 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0fab8710679886bb5cabac6a622a13e9e142669;p=thirdparty%2Flibvirt.git virsh: remove reference to migration in blockcopy --- diff --git a/tools/virsh-domain.c b/tools/virsh-domain.c index 903242038b..0906267f93 100644 --- a/tools/virsh-domain.c +++ b/tools/virsh-domain.c @@ -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;