ChangeLog, tune2fs.c:

tune2fs.c: Fix typo (double spaces) in messages regarding changing the
  	sparse superblock option
This commit is contained in:
Theodore Ts'o 1999-10-20 18:14:23 +00:00
parent 7f4bb6c6e8
commit 671cbfa9fa
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
1999-10-14 <tytso@valinux.com>
* tune2fs.c (main): Fix typo (double spaces) in messages regarding
changing the sparse superblock option
* fsck.c (wait_one): If the fsck process just started, wait a
second before sending a SIGUSR1, to give it a chance
to set the signal handler; otherwise, fsck will die on an

View File

@ -349,7 +349,7 @@ int main (int argc, char ** argv)
#ifdef EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER
if (sb->s_feature_ro_compat &
EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER)
fprintf(stderr, "\nThe filesystem already "
fprintf(stderr, "\nThe filesystem already"
" has spare superblocks.\n");
else {
sb->s_feature_ro_compat |=
@ -369,7 +369,7 @@ int main (int argc, char ** argv)
#ifdef EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER
if (!(sb->s_feature_ro_compat &
EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER))
fprintf(stderr, "\nThe filesystem already "
fprintf(stderr, "\nThe filesystem already"
" does not support spare superblocks.\n");
else {
sb->s_feature_ro_compat &=