aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs/e2fs_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'e2fsprogs/e2fs_lib.c')
-rw-r--r--e2fsprogs/e2fs_lib.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/e2fsprogs/e2fs_lib.c b/e2fsprogs/e2fs_lib.c
index 031f5e06b..4a4db1a13 100644
--- a/e2fsprogs/e2fs_lib.c
+++ b/e2fsprogs/e2fs_lib.c
@@ -135,6 +135,9 @@ void print_e2flags_long(struct stat *sb)
135 case IO_REPARSE_TAG_MOUNT_POINT: 135 case IO_REPARSE_TAG_MOUNT_POINT:
136 ln = "Junction"; 136 ln = "Junction";
137 break; 137 break;
138 case IO_REPARSE_TAG_APPEXECLINK:
139 ln = "App_Exec_Link";
140 break;
138 } 141 }
139 } 142 }
140 fputs(ln, stdout); 143 fputs(ln, stdout);
@@ -174,6 +177,9 @@ void print_e2flags(struct stat *sb)
174 case IO_REPARSE_TAG_MOUNT_POINT: 177 case IO_REPARSE_TAG_MOUNT_POINT:
175 c = 'j'; 178 c = 'j';
176 break; 179 break;
180 case IO_REPARSE_TAG_APPEXECLINK:
181 c = 'A';
182 break;
177 } 183 }
178 } 184 }
179#endif 185#endif