]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virsh: fix informational message in iface-bridge command
authorLaine Stump <laine@laine.org>
Fri, 24 Feb 2012 19:32:33 +0000 (14:32 -0500)
committerLaine Stump <laine@laine.org>
Fri, 24 Feb 2012 20:06:26 +0000 (15:06 -0500)
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

index b97a8880cd79ff5049a83bcd9156d0515772d41a..66bbb0c9b2fa3ac78169ce52c23e36fa2440c4d2 100644 (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) {