unix.c (main): Fix typo in checking the incompat feature set; it
should be checked against EXT2_LIB_FEATURE_INCOMPAT_SUPP.
+1998-07-09 Theodore Ts'o <tytso@rsts-11.mit.edu>
+
+ * 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 <tytso@rsts-11.mit.edu>
* badblocks.c (test_disk): Don't clear the existing bad blocks
*/
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;