mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-25 02:53:52 +08:00
ChangeLog, tune2fs.c:
tune2fs.c: Fix typo (double spaces) in messages regarding changing the sparse superblock option
This commit is contained in:
parent
7f4bb6c6e8
commit
671cbfa9fa
@ -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
|
||||
|
@ -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 &=
|
||||
|
Loading…
Reference in New Issue
Block a user