From: Gabriel Krisman Bertazi Date: Thu, 17 Dec 2020 17:35:34 +0000 (+0100) Subject: tune2fs: fix casefold+encrypt error message X-Git-Tag: v1.46.0~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e735c502f148e1c9043f5fe523f40d14d656cad;p=thirdparty%2Fe2fsprogs.git 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 --- 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; }