Changeset 911ee54 in mainline
- Timestamp:
- 2011-06-03T22:30:41Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4e36219, ff4f073
- Parents:
- 95afd72
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ext2/libext2_directory.c
r95afd72 r911ee54 93 93 int rc; 94 94 uint32_t block_id; 95 uint32_t block_size; 96 95 97 it->inode_ref = inode_ref; 96 98 it->fs = fs; … … 108 110 } 109 111 110 it->current = it->current_block->data;111 it->current_offset = 0;112 113 return EOK;112 block_size = ext2_superblock_get_block_size(fs->superblock); 113 114 it->current_offset = 0; 115 return ext2_directory_iterator_set(it, block_size); 114 116 } 115 117 … … 178 180 179 181 it->current_offset += skip; 180 181 182 return ext2_directory_iterator_set(it, block_size); 182 183 }
Note:
See TracChangeset
for help on using the changeset viewer.