From: Eric Blake Date: Fri, 7 Oct 2011 13:53:27 +0000 (-0600) Subject: snapshot: fix virsh error message typo X-Git-Tag: v0.9.7-rc1~181 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=203b361f097d26642e62f0e36c36c5d1817768e5;p=thirdparty%2Flibvirt.git snapshot: fix virsh error message typo * tools/virsh.c (cmdSnapshotList): Spell exclusive correctly. --- diff --git a/tools/virsh.c b/tools/virsh.c index 48f2b8af7d..62581f6b39 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -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;