aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs
diff options
context:
space:
mode:
Diffstat (limited to 'e2fsprogs')
-rw-r--r--e2fsprogs/e2fs_lib.c6
-rw-r--r--e2fsprogs/lsattr.c3
2 files changed, 8 insertions, 1 deletions
diff --git a/e2fsprogs/e2fs_lib.c b/e2fsprogs/e2fs_lib.c
index dd75ebc18..45a6430e8 100644
--- a/e2fsprogs/e2fs_lib.c
+++ b/e2fsprogs/e2fs_lib.c
@@ -132,6 +132,9 @@ void print_e2flags_long(struct stat *sb)
132 case IO_REPARSE_TAG_SYMLINK: 132 case IO_REPARSE_TAG_SYMLINK:
133 ln = "Symbolic_Link"; 133 ln = "Symbolic_Link";
134 break; 134 break;
135 case BB_REPARSE_TAG_JUNCTION:
136 ln = "Junction";
137 break;
135 case IO_REPARSE_TAG_MOUNT_POINT: 138 case IO_REPARSE_TAG_MOUNT_POINT:
136 ln = "Mount_Point"; 139 ln = "Mount_Point";
137 break; 140 break;
@@ -174,6 +177,9 @@ void print_e2flags(struct stat *sb)
174 case IO_REPARSE_TAG_SYMLINK: 177 case IO_REPARSE_TAG_SYMLINK:
175 c = 'l'; 178 c = 'l';
176 break; 179 break;
180 case BB_REPARSE_TAG_JUNCTION:
181 c = 'j';
182 break;
177 case IO_REPARSE_TAG_MOUNT_POINT: 183 case IO_REPARSE_TAG_MOUNT_POINT:
178 c = 'm'; 184 c = 'm';
179 break; 185 break;
diff --git a/e2fsprogs/lsattr.c b/e2fsprogs/lsattr.c
index 7c3e8ae4b..1c6523745 100644
--- a/e2fsprogs/lsattr.c
+++ b/e2fsprogs/lsattr.c
@@ -45,7 +45,8 @@
45//usage: ) 45//usage: )
46//usage: IF_PLATFORM_MINGW32( 46//usage: IF_PLATFORM_MINGW32(
47//usage: "\n\nAttributes:\n" 47//usage: "\n\nAttributes:\n"
48//usage: "\n m Mount (junction/volume)" 48//usage: "\n m Mount point"
49//usage: "\n j Junction"
49//usage: "\n l Symbolic link" 50//usage: "\n l Symbolic link"
50//usage: "\n A App exec link" 51//usage: "\n A App exec link"
51//usage: "\n R Unidentified reparse point" 52//usage: "\n R Unidentified reparse point"