From: Theodore Ts'o Date: Sun, 13 May 2001 22:14:53 +0000 (+0000) Subject: ChangeLog, ls.c: X-Git-Tag: E2FSPROGS-1_20~38 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6d21621c0ce194fd3c8474b8066a06c4781fb4bc;p=thirdparty%2Fe2fsprogs.git ChangeLog, ls.c: ls.c (print_features): Added missing space when printing (none) as the filesystem feature. (list_super2): If the filesystem revision is unknown, say so. --- diff --git a/lib/e2p/ChangeLog b/lib/e2p/ChangeLog index 985217b6b..b49593fd4 100644 --- a/lib/e2p/ChangeLog +++ b/lib/e2p/ChangeLog @@ -1,3 +1,9 @@ +2001-05-13 Theodore Tso + + * ls.c (print_features): Added missing space when printing (none) + as the filesystem feature. + (list_super2): If the filesystem revision is unknown, say so. + 2001-01-15 Theodore Ts'o * ls.c (list_super2): Fix bug where we were printing the diff --git a/lib/e2p/ls.c b/lib/e2p/ls.c index 7e92bb821..e8ca09bc5 100644 --- a/lib/e2p/ls.c +++ b/lib/e2p/ls.c @@ -107,7 +107,7 @@ static void print_features(struct ext2_super_block * s, FILE *f) } } if (printed == 0) - fprintf(f, "(none)"); + fprintf(f, " (none)"); fprintf(f, "\n"); #endif } @@ -159,7 +159,7 @@ void list_super2(struct ext2_super_block * sb, FILE *f) fprintf(f, " (dynamic)\n"); #endif } else - fprintf(f, "\n"); + fprintf(f, " (unknown)\n"); print_features(sb, f); fprintf(f, "Filesystem state: "); print_fs_state (f, sb->s_state);