Changeset 23a0368 in mainline for uspace/app/sysinst/futil.c
- Timestamp:
- 2017-03-30T19:52:23Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- ae7bfbbd
- Parents:
- b5b5d84
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinst/futil.c
rb5b5d84 r23a0368 40 40 #include <stdlib.h> 41 41 #include <sys/stat.h> 42 #include <vfs/vfs.h> 42 43 #include <sys/types.h> 43 44 #include <dirent.h> … … 119 120 return ENOMEM; 120 121 121 rc = stat(srcp, &s);122 rc = vfs_stat_path(srcp, &s); 122 123 if (rc != EOK) 123 124 return EIO; … … 166 167 return ENOENT; 167 168 168 if ( fstat(sf, &st) != EOK) {169 if (vfs_stat(sf, &st) != EOK) { 169 170 close(sf); 170 171 return EIO;
Note:
See TracChangeset
for help on using the changeset viewer.