From 8144d6799543913fb6b4da29b421d0e3196b1c58 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 9 Jul 1998 05:33:18 +0000 Subject: [PATCH] ChangeLog, unix.c: unix.c (main): Fix typo in checking the incompat feature set; it should be checked against EXT2_LIB_FEATURE_INCOMPAT_SUPP. --- e2fsck/ChangeLog | 5 +++++ e2fsck/unix.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog index e7b6700..18d7223 100644 --- a/e2fsck/ChangeLog +++ b/e2fsck/ChangeLog @@ -1,3 +1,8 @@ +1998-07-09 Theodore Ts'o + + * unix.c (main): Fix typo in checking the incompat feature set; it + should be checked against EXT2_LIB_FEATURE_INCOMPAT_SUPP. + 1998-07-07 Theodore Ts'o * badblocks.c (test_disk): Don't clear the existing bad blocks diff --git a/e2fsck/unix.c b/e2fsck/unix.c index 9ef7a1d..cd6c98d 100644 --- a/e2fsck/unix.c +++ b/e2fsck/unix.c @@ -560,7 +560,7 @@ restart: */ s = (struct ext2fs_sb *) fs->super; if ((s->s_feature_compat & ~EXT2_LIB_FEATURE_COMPAT_SUPP) || - (s->s_feature_incompat & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP)) { + (s->s_feature_incompat & ~EXT2_LIB_FEATURE_INCOMPAT_SUPP)) { com_err(ctx->program_name, EXT2_ET_UNSUPP_FEATURE, "(%s)", ctx->filesystem_name); goto get_newer; -- 1.8.3.1