diff options
Diffstat (limited to 'e2fsck/unix.c')
-rw-r--r-- | e2fsck/unix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/e2fsck/unix.c b/e2fsck/unix.c index d2a8c806..c38b67ab 100644 --- a/e2fsck/unix.c +++ b/e2fsck/unix.c @@ -1002,6 +1002,10 @@ static errcode_t try_open_fs(e2fsck_t ctx, int flags, io_manager io_ptr, } else retval = ext2fs_open2(ctx->filesystem_name, ctx->io_options, flags, 0, 0, io_ptr, ret_fs); + + if (ret_fs) + e2fsck_set_bitmap_type(*ret_fs, EXT2FS_BMAP64_RBTREE, + "default", NULL); return retval; } |