From 364a373e16efda7b6f5b7bdc992594ec04ffcc14 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Wed, 13 Jun 2001 23:46:39 +0000 Subject: [PATCH] ChangeLog, setsuper.c: setsuper.c: Add s_lastcheck field to the fields which can be modified using set_super_value. (Suggested by Andreas Dilger) ChangeLog, Makefile.in: Makefile.in (HFILES): Add ext2_types.h to the list of files which should be installed. --- debugfs/ChangeLog | 6 ++++++ debugfs/setsuper.c | 1 + lib/ext2fs/ChangeLog | 3 +++ lib/ext2fs/Makefile.in | 2 +- 4 files changed, 11 insertions(+), 1 deletion(-) diff --git a/debugfs/ChangeLog b/debugfs/ChangeLog index bac49a3..7851625 100644 --- a/debugfs/ChangeLog +++ b/debugfs/ChangeLog @@ -1,3 +1,9 @@ +2001-06-13 Theodore Tso + + * setsuper.c: Add s_lastcheck field to the fields which can be + modified using set_super_value. (Suggested by Andreas + Dilger) + 2001-06-03 Theodore Tso * debugfs.c (copy_file): Fixed signed vs unsigned bug which causes diff --git a/debugfs/setsuper.c b/debugfs/setsuper.c index c257fcc..c9cdb88 100644 --- a/debugfs/setsuper.c +++ b/debugfs/setsuper.c @@ -66,6 +66,7 @@ static struct super_set_info super_fields[] = { /* __u8 s_uuid[16]; */ { "volume_name", &set_sb.s_volume_name, 16, parse_string }, { "last_mounted", &set_sb.s_last_mounted, 64, parse_string }, + { "lastcheck", &set_sb.s_lastcheck, 4, parse_uint }, { "algorithm_usage_bitmap", &set_sb.s_algorithm_usage_bitmap, 4, parse_uint }, { "prealloc_blocks", &set_sb.s_prealloc_blocks, 1, parse_uint }, diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog index f8dff7f..6e693b0 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,5 +1,8 @@ 2001-06-13 Theodore Tso + * Makefile.in (HFILES): Add ext2_types.h to the list of files + which should be installed. + * ismounted.c (check_mntent_file): Work around GNU hurd brain damage. Addresses Debian bug #100304. diff --git a/lib/ext2fs/Makefile.in b/lib/ext2fs/Makefile.in index 250d942..3847f21 100644 --- a/lib/ext2fs/Makefile.in +++ b/lib/ext2fs/Makefile.in @@ -112,7 +112,7 @@ SRCS= ext2_err.c \ $(srcdir)/version.c \ $(srcdir)/write_bb_file.c -HFILES= bitops.h ext2fs.h ext2_io.h ext2_fs.h +HFILES= bitops.h ext2fs.h ext2_io.h ext2_fs.h ext2_types.h LIBRARY= libext2fs LIBDIR= ext2fs -- 1.8.3.1