Changeset b19e892 in mainline for uspace/app/bdsh/exec.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/app/bdsh/exec.c
r80743a1 rb19e892 37 37 #include <unistd.h> 38 38 #include <str.h> 39 #include <fcntl.h>40 39 #include <str_error.h> 41 40 #include <errno.h> … … 60 59 int fd; 61 60 62 fd = open(f, O_RDONLY);61 fd = vfs_lookup_open(f, WALK_REGULAR, MODE_READ); 63 62 if (fd >= 0) { 64 63 close(fd);
Note:
See TracChangeset
for help on using the changeset viewer.