Changeset 367d67fe in mainline
- Timestamp:
- 2011-07-16T16:31:43Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 38224615
- Parents:
- 3f3e5b5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/minixfs/mfs_ops.c
r3f3e5b5 r367d67fe 354 354 } 355 355 356 if (!bcmp(component, d_info.d_name, min(sbi->max_name_len, 357 comp_size))) { 356 const size_t dentry_name_size = str_size(d_info.d_name); 357 358 if (comp_size == dentry_name_size && 359 !bcmp(component, d_info.d_name, dentry_name_size)) { 358 360 /*Hit!*/ 359 361 mfs_node_core_get(rfn, mnode->instance,
Note:
See TracChangeset
for help on using the changeset viewer.