aboutsummaryrefslogtreecommitdiff
path: root/toys/other/lsattr.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/other/lsattr.c')
-rw-r--r--toys/other/lsattr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/toys/other/lsattr.c b/toys/other/lsattr.c
index 3e327920..547012ef 100644
--- a/toys/other/lsattr.c
+++ b/toys/other/lsattr.c
@@ -102,7 +102,8 @@ static struct ext2_attr {
{"No_Dump", FS_NODUMP_FL, 'd'},
{"No_Atime", FS_NOATIME_FL, 'A'},
{"Compression_Requested", FS_COMPR_FL, 'c'},
- {"Encrypted", FS_ENCRYPT_FL, 'E'},
+ // FS_ENCRYPT_FL added to linux 4.5 march 2016, +y7 = 2023
+ {"Encrypted", 0x800, 'E'},
{"Journaled_Data", FS_JOURNAL_DATA_FL, 'j'},
{"Indexed_directory", FS_INDEX_FL, 'I'},
{"No_Tailmerging", FS_NOTAIL_FL, 't'},