Changeset b19e892 in mainline for uspace/srv/devman/match.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/srv/devman/match.c
r80743a1 rb19e892 32 32 33 33 #include <errno.h> 34 #include <fcntl.h>35 34 #include <io/log.h> 36 35 #include <str.h> … … 203 202 struct stat st; 204 203 205 fd = open(conf_path, O_RDONLY);204 fd = vfs_lookup_open(conf_path, WALK_REGULAR, MODE_READ); 206 205 if (fd < 0) { 207 206 log_msg(LOG_DEFAULT, LVL_ERROR, "Unable to open `%s' for reading: %s.",
Note:
See TracChangeset
for help on using the changeset viewer.