From 671cbfa9fab194888151df2714359e357e047ca2 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Wed, 20 Oct 1999 18:14:23 +0000 Subject: [PATCH] ChangeLog, tune2fs.c: tune2fs.c: Fix typo (double spaces) in messages regarding changing the sparse superblock option --- misc/ChangeLog | 3 +++ misc/tune2fs.c | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/misc/ChangeLog b/misc/ChangeLog index 6a32f4a..a715a59 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,5 +1,8 @@ 1999-10-14 + * 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 diff --git a/misc/tune2fs.c b/misc/tune2fs.c index b5582a5..4e9f853 100644 --- a/misc/tune2fs.c +++ b/misc/tune2fs.c @@ -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 &= -- 1.8.3.1