diff options
author | robi <robi> | 2010-08-22 19:09:46 +0000 |
---|---|---|
committer | robi <robi> | 2010-08-22 19:09:46 +0000 |
commit | e66d5f9b85fd816571fe4a780f05fc0ad0b8256f (patch) | |
tree | 73c4c5a2fa73417bde86f777ba4dd0903f3947ac /src/inode.c | |
parent | 8f27364faf5c58eebce6616be246afaeff734a14 (diff) |
magic functions Part1 (inactive)
Diffstat (limited to 'src/inode.c')
-rw-r--r-- | src/inode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/inode.c b/src/inode.c index 57ca9a1..d25e9ad 100644 --- a/src/inode.c +++ b/src/inode.c @@ -110,6 +110,7 @@ static void local_dump_extents(FILE *f, const char *prefix, struct ext2_inode * unsigned int printed = 0; errcode_t errcode; + errcode = local_ext2fs_extent_open(current_fs, *inode, &handle); if (errcode) return; @@ -487,7 +488,7 @@ void dump_inode(FILE *out, const char *prefix, } else if (do_dump_blocks && !(inode->i_dtime)) { if (inode->i_flags & EXT4_EXTENTS_FL) local_dump_extents(out, prefix, inode, - DUMP_LEAF_EXTENTS, 0, 0); + DUMP_LEAF_EXTENTS|DUMP_EXTENT_TABLE, 8, 8); else dump_blocks(out, prefix, inode); } |