]> xenbits.xensource.com Git - libvirt.git/commitdiff
snapshot: fix virsh error message typo
authorEric Blake <eblake@redhat.com>
Fri, 7 Oct 2011 13:53:27 +0000 (07:53 -0600)
committerEric Blake <eblake@redhat.com>
Fri, 7 Oct 2011 13:53:27 +0000 (07:53 -0600)
* tools/virsh.c (cmdSnapshotList): Spell exclusive correctly.

tools/virsh.c

index 48f2b8af7dcba951d8dad774b6d4021ab5a4b22e..62581f6b39dc463d1dfd05f5c36acaf2845f15ef 100644 (file)
@@ -13133,19 +13133,19 @@ cmdSnapshotList(vshControl *ctl, const vshCmd *cmd)
     if (vshCommandOptBool(cmd, "parent")) {
         if (vshCommandOptBool(cmd, "roots")) {
             vshError(ctl, "%s",
-                     _("--parent and --roots are mutually exlusive"));
+                     _("--parent and --roots are mutually exclusive"));
             return false;
         }
         if (tree) {
             vshError(ctl, "%s",
-                     _("--parent and --tree are mutually exlusive"));
+                     _("--parent and --tree are mutually exclusive"));
             return false;
         }
         parent_filter = 1;
     } else if (vshCommandOptBool(cmd, "roots")) {
         if (tree) {
             vshError(ctl, "%s",
-                     _("--roots and --tree are mutually exlusive"));
+                     _("--roots and --tree are mutually exclusive"));
             return false;
         }
         flags |= VIR_DOMAIN_SNAPSHOT_LIST_ROOTS;