aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2023-09-04 17:38:02 -0700
committerJaegeuk Kim <jaegeuk@kernel.org>2023-09-07 14:13:02 -0700
commit84a218572118382f73997c6411ff80c98d3f6f94 (patch)
treec1a5f66b0ea5034736929409f600a3458d171d14
parentb15b6cc56ac7764be17acbdbf96448f388992adc (diff)
downloadf2fs-tools-84a218572118382f73997c6411ff80c98d3f6f94.tar.gz
fsck.f2fs: use clearer info message for -a option
The message "Info: Fix the reported corruption" makes people think that fsck has detected filesystem corruption. Replace this message with "Info: Automatic fix mode enabled" which is more accurate. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
-rw-r--r--fsck/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsck/main.c b/fsck/main.c
index 3690c74..dd8643c 100644
--- a/fsck/main.c
+++ b/fsck/main.c
@@ -263,7 +263,7 @@ void f2fs_parse_options(int argc, char *argv[])
break;
case 'a':
c.auto_fix = 1;
- MSG(0, "Info: Fix the reported corruption.\n");
+ MSG(0, "Info: Automatic fix mode enabled.\n");
break;
case 'c':
c.cache_config.num_cache_entry = atoi(optarg);