From: Theodore Ts'o Date: Sat, 11 Oct 2008 15:22:15 +0000 (-0400) Subject: e2fsck: Print the correct inode number for uninit-bg related problem reports X-Git-Tag: v1.41.3~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4758835c280082e38f0b96816ea4f60351a49053;p=thirdparty%2Fe2fsprogs.git e2fsck: Print the correct inode number for uninit-bg related problem reports Fix the reporting for problem codes PR_2_INOREF_BG_INO_UNINIT and PR_2_INOREF_IN_UNUSED. Signed-off-by: "Theodore Ts'o" --- diff --git a/e2fsck/problem.c b/e2fsck/problem.c index 7976a70d7..5a3ef79af 100644 --- a/e2fsck/problem.c +++ b/e2fsck/problem.c @@ -1269,12 +1269,12 @@ static struct e2fsck_problem problem_table[] = { /* Inode found in group where _INODE_UNINIT is set */ { PR_2_INOREF_BG_INO_UNINIT, - N_("@i %i found in @g %g where _INODE_UNINIT is set. "), + N_("@E references @i %Di in @g %g where _INODE_UNINIT is set.\n"), PROMPT_FIX, PR_PREEN_OK }, /* Inode found in group unused inodes area */ { PR_2_INOREF_IN_UNUSED, - N_("@i %i found in @g %g unused inodes area. "), + N_("@E references @i %Di found in @g %g's unused inodes area.\n"), PROMPT_FIX, PR_PREEN_OK }, /* Pass 3 errors */