Changeset b19e892 in mainline for uspace/app/bdsh/cmds/modules/rm/rm.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/cmds/modules/rm/rm.c
r80743a1 rb19e892 31 31 #include <stdlib.h> 32 32 #include <unistd.h> 33 #include <fcntl.h>34 33 #include <dirent.h> 35 34 #include <getopt.h> … … 151 150 } 152 151 153 fd = open(path, O_RDONLY);152 fd = vfs_lookup(path, WALK_REGULAR); 154 153 if (fd >= 0) { 155 154 close(fd);
Note:
See TracChangeset
for help on using the changeset viewer.