Index: uspace/app/bdsh/cmds/modules/cp/cp.c
===================================================================
--- uspace/app/bdsh/cmds/modules/cp/cp.c	(revision c23275a5dca35d73b323125ec326de9ca8315f1a)
+++ uspace/app/bdsh/cmds/modules/cp/cp.c	(revision 8fe46a0f40ff74ca91e8c0f7ece6d2b75eac9029)
@@ -294,5 +294,6 @@
 				merge_paths(dest_path, PATH_MAX, src_dirname);
 
-				if (vfs_link_path(dest_path, KIND_DIRECTORY) != EOK) {
+				if (vfs_link_path(dest_path, KIND_DIRECTORY,
+				    NULL) != EOK) {
 					printf("Unable to create "
 					    "dest directory %s\n", dest_path);
@@ -308,5 +309,6 @@
 			 * e.g. cp -r /src /data/new_dir_src
 			 */
-			if (vfs_link_path(dest_path, KIND_DIRECTORY) != EOK) {
+			if (vfs_link_path(dest_path, KIND_DIRECTORY,
+			    NULL) != EOK) {
 				printf("Unable to create "
 				    "dest directory %s\n", dest_path);
Index: uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
===================================================================
--- uspace/app/bdsh/cmds/modules/mkdir/mkdir.c	(revision c23275a5dca35d73b323125ec326de9ca8315f1a)
+++ uspace/app/bdsh/cmds/modules/mkdir/mkdir.c	(revision 8fe46a0f40ff74ca91e8c0f7ece6d2b75eac9029)
@@ -96,5 +96,5 @@
 
 	if (!create_parents) {
-		ret = vfs_link_path(path, KIND_DIRECTORY);
+		ret = vfs_link_path(path, KIND_DIRECTORY, NULL);
 		if (ret != EOK) {
 			cli_error(CL_EFAIL, "%s: could not create %s (%s)",
@@ -135,5 +135,5 @@
 			path[prev_off] = 0;
 
-			ret = vfs_link_path(path, KIND_DIRECTORY);
+			ret = vfs_link_path(path, KIND_DIRECTORY, NULL);
 			if (ret != EOK && ret != EEXIST) {
 				cli_error(CL_EFAIL, "%s: could not create %s (%s)",
@@ -146,5 +146,5 @@
 		}
 		/* Create the final directory. */
-		ret = vfs_link_path(path, KIND_DIRECTORY);
+		ret = vfs_link_path(path, KIND_DIRECTORY, NULL);
 		if (ret != EOK) {
 			cli_error(CL_EFAIL, "%s: could not create %s (%s)",
Index: uspace/app/sysinst/futil.c
===================================================================
--- uspace/app/sysinst/futil.c	(revision c23275a5dca35d73b323125ec326de9ca8315f1a)
+++ uspace/app/sysinst/futil.c	(revision 8fe46a0f40ff74ca91e8c0f7ece6d2b75eac9029)
@@ -128,5 +128,5 @@
 		} else if (s.is_directory) {
 			printf("Create directory '%s'\n", destp);
-			rc = vfs_link_path(destp, KIND_DIRECTORY);
+			rc = vfs_link_path(destp, KIND_DIRECTORY, NULL);
 			if (rc != EOK)
 				return EIO;
Index: uspace/app/sysinst/sysinst.c
===================================================================
--- uspace/app/sysinst/sysinst.c	(revision c23275a5dca35d73b323125ec326de9ca8315f1a)
+++ uspace/app/sysinst/sysinst.c	(revision 8fe46a0f40ff74ca91e8c0f7ece6d2b75eac9029)
@@ -174,5 +174,5 @@
 		return EIO;
 
-	rc = vfs_link_path(MOUNT_POINT, KIND_DIRECTORY);
+	rc = vfs_link_path(MOUNT_POINT, KIND_DIRECTORY, NULL);
 	if (rc != EOK)
 		return rc;
@@ -213,5 +213,5 @@
 
 	printf("sysinst_copy_boot_files(): create CD mount point\n");
-	rc = vfs_link_path(CD_MOUNT_POINT, KIND_DIRECTORY);
+	rc = vfs_link_path(CD_MOUNT_POINT, KIND_DIRECTORY, NULL);
 	if (rc != EOK)
 		return rc;
Index: uspace/app/tester/vfs/vfs1.c
===================================================================
--- uspace/app/tester/vfs/vfs1.c	(revision c23275a5dca35d73b323125ec326de9ca8315f1a)
+++ uspace/app/tester/vfs/vfs1.c	(revision 8fe46a0f40ff74ca91e8c0f7ece6d2b75eac9029)
@@ -71,5 +71,5 @@
 	int rc;
 
-	rc = vfs_link_path(TEST_DIRECTORY, KIND_DIRECTORY);
+	rc = vfs_link_path(TEST_DIRECTORY, KIND_DIRECTORY, NULL);
 	if (rc != EOK) {
 		TPRINTF("rc=%d\n", rc);
Index: uspace/app/untar/main.c
===================================================================
--- uspace/app/untar/main.c	(revision c23275a5dca35d73b323125ec326de9ca8315f1a)
+++ uspace/app/untar/main.c	(revision 8fe46a0f40ff74ca91e8c0f7ece6d2b75eac9029)
@@ -105,5 +105,5 @@
 	int rc;
 
-	rc = vfs_link_path(header->filename, KIND_DIRECTORY);
+	rc = vfs_link_path(header->filename, KIND_DIRECTORY, NULL);
 	if (rc != EOK) {
 		if (rc != EEXIST) {
