From 4e735c502f148e1c9043f5fe523f40d14d656cad Mon Sep 17 00:00:00 2001 From: Gabriel Krisman Bertazi Date: Thu, 17 Dec 2020 18:35:34 +0100 Subject: [PATCH] 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 Signed-off-by: Arnaud Ferraris Signed-off-by: Theodore Ts'o --- misc/tune2fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tune2fs.c b/misc/tune2fs.c index 5904177..f959962 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; } -- 1.8.3.1