From 4758835c280082e38f0b96816ea4f60351a49053 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sat, 11 Oct 2008 11:22:15 -0400 Subject: [PATCH] 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" --- e2fsck/problem.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2fsck/problem.c b/e2fsck/problem.c index 7976a70..5a3ef79 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 */ -- 1.8.3.1