20 lines
752 B
Diff
20 lines
752 B
Diff
commit edea3dfdd861d5eee4712da43781908f0fa2a6d5
|
|
Author: Jim Fehlig <jfehlig@novell.com>
|
|
Date: Mon Oct 19 13:53:40 2009 -0600
|
|
|
|
Remove extra arg in call to vshError()
|
|
|
|
Index: libvirt-0.7.2/tools/virsh.c
|
|
===================================================================
|
|
--- libvirt-0.7.2.orig/tools/virsh.c
|
|
+++ libvirt-0.7.2/tools/virsh.c
|
|
@@ -2510,7 +2510,7 @@ cmdMigrate (vshControl *ctl, const vshCm
|
|
* a libvirt URI, or a hypervisor specific URI. */
|
|
|
|
if (migrateuri != NULL) {
|
|
- vshError(ctl, FALSE, "%s", _("migrate: Unexpected migrateuri for peer2peer/direct migration"));
|
|
+ vshError(ctl, "%s", _("migrate: Unexpected migrateuri for peer2peer/direct migration"));
|
|
goto done;
|
|
}
|
|
|