diff options
author | Theodore Ts'o <tytso@mit.edu> | 1998-07-09 05:33:18 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 1998-07-09 05:33:18 +0000 |
commit | 8144d6799543913fb6b4da29b421d0e3196b1c58 (patch) | |
tree | 2e7da279248d98c7803621528d91f71cfcf27d8b /e2fsck/unix.c | |
parent | 6e063672fc74c08e49f04bd04ff3804e98966e5c (diff) | |
download | e2fsprogs-8144d6799543913fb6b4da29b421d0e3196b1c58.tar.gz |
ChangeLog, unix.c:
unix.c (main): Fix typo in checking the incompat feature set; it
should be checked against EXT2_LIB_FEATURE_INCOMPAT_SUPP.
Diffstat (limited to 'e2fsck/unix.c')
-rw-r--r-- | e2fsck/unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e2fsck/unix.c b/e2fsck/unix.c index 9ef7a1db..cd6c98d6 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; |