Changeset a6fc88a in mainline for uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
- Timestamp:
- 2017-04-03T21:15:17Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- 8fe46a0
- Parents:
- ea4a3f0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
rea4a3f0 ra6fc88a 96 96 97 97 if (!create_parents) { 98 ret = vfs_link_path(path, KIND_DIRECTORY );98 ret = vfs_link_path(path, KIND_DIRECTORY, NULL); 99 99 if (ret != EOK) { 100 100 cli_error(CL_EFAIL, "%s: could not create %s (%s)", … … 135 135 path[prev_off] = 0; 136 136 137 ret = vfs_link_path(path, KIND_DIRECTORY );137 ret = vfs_link_path(path, KIND_DIRECTORY, NULL); 138 138 if (ret != EOK && ret != EEXIST) { 139 139 cli_error(CL_EFAIL, "%s: could not create %s (%s)", … … 146 146 } 147 147 /* Create the final directory. */ 148 ret = vfs_link_path(path, KIND_DIRECTORY );148 ret = vfs_link_path(path, KIND_DIRECTORY, NULL); 149 149 if (ret != EOK) { 150 150 cli_error(CL_EFAIL, "%s: could not create %s (%s)",
Note:
See TracChangeset
for help on using the changeset viewer.