summaryrefslogtreecommitdiff
path: root/lib/e2p
diff options
context:
space:
mode:
Diffstat (limited to 'lib/e2p')
-rw-r--r--lib/e2p/ChangeLog8
-rw-r--r--lib/e2p/pf.c9
2 files changed, 17 insertions, 0 deletions
diff --git a/lib/e2p/ChangeLog b/lib/e2p/ChangeLog
index fe4fa5e9..a9a8f41a 100644
--- a/lib/e2p/ChangeLog
+++ b/lib/e2p/ChangeLog
@@ -1,3 +1,11 @@
+Sun Sep 22 16:20:12 1996 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * pf.c: Add support for the 'A' (no atime) flag.
+
+Thu Sep 12 15:23:07 1996 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * Release of E2fsprogs version 1.05
+
Sat Sep 7 14:48:35 1996 Theodore Ts'o <tytso@rsts-11.mit.edu>
* ls.c (interval_string): Pretty print the check interval.
diff --git a/lib/e2p/pf.c b/lib/e2p/pf.c
index ec18dcb8..8ef00b82 100644
--- a/lib/e2p/pf.c
+++ b/lib/e2p/pf.c
@@ -32,6 +32,9 @@ static const unsigned long flags_array[] = {
#ifdef EXT2_NODUMP_FL
EXT2_NODUMP_FL,
#endif
+#ifdef EXT2_NOATIME_FL
+ EXT2_NOATIME_FL,
+#endif
0};
static const char * short_flags[] = {
@@ -48,6 +51,9 @@ static const char * short_flags[] = {
#ifdef EXT2_NODUMP_FL
"d",
#endif
+#ifdef EXT2_NOATIME_FL
+ "A",
+#endif
NULL};
static const char * long_flags[] = {
@@ -64,6 +70,9 @@ static const char * long_flags[] = {
#ifdef EXT2_NODUMP_FL
"No_Dump, ",
#endif
+#ifdef EXT2_NOATIME_FL
+ "No_Atime, ",
+#endif
NULL};
void print_flags (FILE * f, unsigned long flags, int long_format)