From: Laine Stump Date: Fri, 24 Feb 2012 19:32:33 +0000 (-0500) Subject: virsh: fix informational message in iface-bridge command X-Git-Tag: v0.9.11-rc1~224 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a92360091fd036152a7980f38ab01c54874061d;p=thirdparty%2Flibvirt.git virsh: fix informational message in iface-bridge command See: https://bugzilla.redhat.com/show_bug.cgi?id=797066 The position of the bridge name and ethernet device name were accidentally swapped in the message informing of success creating the bridge. --- diff --git a/tools/virsh.c b/tools/virsh.c index b97a8880cd..66bbb0c9b2 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -8974,7 +8974,7 @@ cmdInterfaceBridge(vshControl *ctl, const vshCmd *cmd) } vshPrint(ctl, _("Created bridge %s with attached device %s\n"), - if_name, br_name); + br_name, if_name); /* start it up unless requested not to */ if (!nostart) {