diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog index f445784f..66d5a5de 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 5f1aaa23..4e1b814f 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;