From: Aditya Kali Date: Fri, 13 Jul 2012 22:25:08 +0000 (-0700) Subject: e2fsck/quota: mark FS invalid if quotas are not fixed X-Git-Tag: v1.42.5~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75e862ecd01d7559cdf02fb761786b21fd788b7f;p=thirdparty%2Fe2fsprogs.git e2fsck/quota: mark FS invalid if quotas are not fixed If user chooses to not fix quota info, then the FS should be marked as having errors. PR_NO_OK prevented this from happening. Signed-off-by: Aditya Kali Signed-off-by: Theodore Ts'o --- diff --git a/e2fsck/problem.c b/e2fsck/problem.c index 06640cbd6..977a4c81c 100644 --- a/e2fsck/problem.c +++ b/e2fsck/problem.c @@ -1694,7 +1694,7 @@ static struct e2fsck_problem problem_table[] = { /* Update quota information if it is inconsistent */ { PR_6_UPDATE_QUOTAS, N_("Update quota info for quota type %N"), - PROMPT_NULL, PR_PREEN_OK | PR_NO_OK }, + PROMPT_NULL, PR_PREEN_OK }, { 0 } };