Changeset 4d21cf8 in mainline for uspace/srv/vfs/vfs_lookup.c
- Timestamp:
- 2007-11-03T14:23:57Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 20614d0
- Parents:
- fa23560
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_lookup.c
rfa23560 r4d21cf8 62 62 * @return EOK on success or an error code from errno.h. 63 63 */ 64 int vfs_lookup_internal(char *path, size_t len, vfs_ node_t *result,65 vfs_ node_t *altroot)64 int vfs_lookup_internal(char *path, size_t len, vfs_triplet_t *result, 65 vfs_pair_t *altroot) 66 66 { 67 vfs_ node_t *root;67 vfs_pair_t *root; 68 68 69 69 if (!len) … … 73 73 root = altroot; 74 74 else 75 root = &rootfs;75 root = (vfs_pair_t *) &rootfs; 76 76 77 77 if (!root->fs_handle)
Note:
See TracChangeset
for help on using the changeset viewer.