From: Chris Lalancette Date: Fri, 31 Jul 2009 06:59:02 +0000 (+0200) Subject: Fix an erroneous debug error to KVM; it should read QEMU/KVM. X-Git-Tag: v0.7.0~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=067c00f5332c30d2c9bebbc4f894b9c1854a5162;p=thirdparty%2Flibvirt.git Fix an erroneous debug error to KVM; it should read QEMU/KVM. Signed-off-by: Chris Lalancette --- diff --git a/src/qemu_driver.c b/src/qemu_driver.c index 2e26e790c5..df690b11d3 100644 --- a/src/qemu_driver.c +++ b/src/qemu_driver.c @@ -6332,7 +6332,7 @@ qemudDomainMigratePrepare2 (virConnectPtr dconn, */ if (!STRPREFIX (uri_in, "tcp:")) { qemudReportError (dconn, NULL, NULL, VIR_ERR_INVALID_ARG, - "%s", _("only tcp URIs are supported for KVM migrations")); + "%s", _("only tcp URIs are supported for KVM/QEMU migrations")); goto cleanup; }