diff options
author | Theodore Ts'o <tytso@mit.edu> | 2008-08-25 21:08:19 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-08-25 21:08:19 -0400 |
commit | 5dd77dbe5a0ac6d78c1c6441fae4087be56d9088 (patch) | |
tree | bb81c9f0ac2480836564a185fc0695cce4e65d5c /e2fsck/problem.c | |
parent | 649bd289d016e4d6db07318145ba488bf7095248 (diff) | |
download | e2fsprogs-5dd77dbe5a0ac6d78c1c6441fae4087be56d9088.tar.gz |
Add support for with empty directory blocks in 64k blocksize filesystems
The rec_len field in the directory entry is 16 bits, so if the
filesystem is completely empty, rec_len of 0 is used to designate
65536, for the case where the directory entry takes the entire 64k
block.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'e2fsck/problem.c')
-rw-r--r-- | e2fsck/problem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e2fsck/problem.c b/e2fsck/problem.c index 9d4c4e86..27e2bf0f 100644 --- a/e2fsck/problem.c +++ b/e2fsck/problem.c @@ -1136,7 +1136,7 @@ static struct e2fsck_problem problem_table[] = { /* Directory entry for '.' is big. Split? */ { PR_2_SPLIT_DOT, - N_("@d @e for '.' is big. "), + N_("@d @e for '.' in %p (%i) is big.\n"), PROMPT_SPLIT, PR_NO_OK }, /* Illegal FIFO inode */ |