2020-12-10 15:16:42

by Arnaud Ferraris

[permalink] [raw]
Subject: [PATCH RESEND v2 02/12] tune2fs: Fix casefold+encrypt error message

From: Gabriel Krisman Bertazi <[email protected]>

Refering to EXT4_INCOMPAT_CASEFOLD as encoding is not as meaningful as
saying casefold.

Signed-off-by: Gabriel Krisman Bertazi <[email protected]>
Signed-off-by: Arnaud Ferraris <[email protected]>
---
misc/tune2fs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/misc/tune2fs.c b/misc/tune2fs.c
index 0809e565..c182f4d5 100644
--- a/misc/tune2fs.c
+++ b/misc/tune2fs.c
@@ -1470,7 +1470,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;
}
--
2.29.2


2021-01-28 00:44:05

by Theodore Ts'o

[permalink] [raw]
Subject: Re: [PATCH RESEND v2 02/12] tune2fs: Fix casefold+encrypt error message

On Thu, Dec 10, 2020 at 04:03:43PM +0100, Arnaud Ferraris wrote:
> From: Gabriel Krisman Bertazi <[email protected]>
>
> Refering to EXT4_INCOMPAT_CASEFOLD as encoding is not as meaningful as
> saying casefold.
>
> Signed-off-by: Gabriel Krisman Bertazi <[email protected]>
> Signed-off-by: Arnaud Ferraris <[email protected]>

Thanks, applied.

- Ted