Changeset a6fc88a in mainline for uspace/app/bdsh/cmds/modules/cp/cp.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/cp/cp.c
rea4a3f0 ra6fc88a 294 294 merge_paths(dest_path, PATH_MAX, src_dirname); 295 295 296 if (vfs_link_path(dest_path, KIND_DIRECTORY) != EOK) { 296 if (vfs_link_path(dest_path, KIND_DIRECTORY, 297 NULL) != EOK) { 297 298 printf("Unable to create " 298 299 "dest directory %s\n", dest_path); … … 308 309 * e.g. cp -r /src /data/new_dir_src 309 310 */ 310 if (vfs_link_path(dest_path, KIND_DIRECTORY) != EOK) { 311 if (vfs_link_path(dest_path, KIND_DIRECTORY, 312 NULL) != EOK) { 311 313 printf("Unable to create " 312 314 "dest directory %s\n", dest_path);
Note:
See TracChangeset
for help on using the changeset viewer.