From 4a92360091fd036152a7980f38ab01c54874061d Mon Sep 17 00:00:00 2001 From: Laine Stump Date: Fri, 24 Feb 2012 14:32:33 -0500 Subject: [PATCH] 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. --- tools/virsh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {