Changeset 6e5562a in mainline for uspace/app/sysinst/futil.c
- Timestamp:
- 2017-03-31T19:57:38Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update
- Children:
- 80743a1
- Parents:
- a56cef9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sysinst/futil.c
ra56cef9 r6e5562a 39 39 #include <stdio.h> 40 40 #include <stdlib.h> 41 #include <sys/stat.h>42 41 #include <vfs/vfs.h> 43 42 #include <sys/types.h> … … 130 129 } else if (s.is_directory) { 131 130 printf("Create directory '%s'\n", destp); 132 rc = mkdir(destp, 0);131 rc = vfs_link_path(destp, KIND_DIRECTORY); 133 132 if (rc != EOK) 134 133 return EIO;
Note:
See TracChangeset
for help on using the changeset viewer.