From: Theodore Ts'o Date: Fri, 9 Dec 2005 22:31:08 +0000 (-0500) Subject: Fix typo in e2fsck error message. X-Git-Tag: E2FSPROGS-1.39-WIP-1210~14 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f4b6d2a039fd443f1f2373f071ca281eb3029018;p=thirdparty%2Fe2fsprogs.git Fix typo in e2fsck error message. Thanks to Solar Designer for pointing out the missing preposition. Signed-off-by: "Theodore Ts'o" --- diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog index f445784fd..66d5a5deb 100644 --- a/e2fsck/ChangeLog +++ b/e2fsck/ChangeLog @@ -1,5 +1,8 @@ 2005-12-09 Theodore Ts'o + * unix.c (PRS): Fix typo in error message; thanks to Solar + Designer for pointing out the missing proposition. + * e2fsck.8.in: Clarify description of differences between the -p, -n, and -y options. diff --git a/e2fsck/unix.c b/e2fsck/unix.c index 5f1aaa231..4e1b814f6 100644 --- a/e2fsck/unix.c +++ b/e2fsck/unix.c @@ -613,7 +613,7 @@ static errcode_t PRS(int argc, char *argv[], e2fsck_t *ret_ctx) if (ctx->options & (E2F_OPT_YES|E2F_OPT_NO)) { conflict_opt: fatal_error(ctx, - _("Only one the options -p/-a, -n or -y may be specified.")); + _("Only one of the options -p/-a, -n or -y may be specified.")); } ctx->options |= E2F_OPT_PREEN; break;