Changeset b19e892 in mainline for uspace/lib/bithenge/src/file.c
- Timestamp:
- 2017-04-02T10:39:13Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9c4cf0d
- Parents:
- 80743a1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/bithenge/src/file.c
r80743a1 rb19e892 38 38 #include <assert.h> 39 39 #include <errno.h> 40 #include <fcntl.h>41 40 #include <stdio.h> 42 41 #include <stdlib.h> … … 146 145 assert(filename); 147 146 148 int fd = open(filename, O_RDONLY);147 int fd = vfs_lookup_open(filename, WALK_REGULAR, MODE_READ); 149 148 if (fd < 0) 150 149 return errno;
Note:
See TracChangeset
for help on using the changeset viewer.