aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabriel Krisman Bertazi <krisman@collabora.com>2020-12-17 18:35:34 +0100
committerTheodore Ts'o <tytso@mit.edu>2021-01-27 22:09:34 -0500
commit4e735c502f148e1c9043f5fe523f40d14d656cad (patch)
treeb04708bb5e5920981698c5f1fbe43339ec3d940d
parent1f9bb778a8e693f8d5f2fd7a26fd6b9fe2e3212a (diff)
downloade2fsprogs-4e735c502f148e1c9043f5fe523f40d14d656cad.tar.gz
tune2fs: fix casefold+encrypt error message
Refering to EXT4_INCOMPAT_CASEFOLD as encoding is not as meaningful as saying casefold. Signed-off-by: Gabriel Krisman Bertazi <krisman@collabora.com> Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rw-r--r--misc/tune2fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/tune2fs.c b/misc/tune2fs.c
index 590417704..f95996214 100644
--- a/misc/tune2fs.c
+++ b/misc/tune2fs.c
@@ -1471,7 +1471,7 @@ mmp_error:
if (FEATURE_ON(E2P_FEATURE_INCOMPAT, EXT4_FEATURE_INCOMPAT_ENCRYPT)) {
if (ext2fs_has_feature_casefold(sb)) {
fputs(_("Cannot enable encrypt feature on filesystems "
- "with the encoding feature enabled.\n"),
+ "with the casefold feature enabled.\n"),
stderr);
return 1;
}