mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user