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.
This commit is contained in:
Laine Stump 2012-02-24 14:32:33 -05:00
parent 1d4c4d9d4f
commit 4a92360091

View File

@ -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) {