Index: uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
===================================================================
--- uspace/app/bdsh/cmds/modules/mkdir/mkdir.c	(revision d752cf4b1be184990dc8cf50aba3798a8f14cfae)
+++ uspace/app/bdsh/cmds/modules/mkdir/mkdir.c	(revision 43a10c47713d79403f472595d6fc8664cbf054b4)
@@ -94,5 +94,5 @@
 	/* Its a good idea to allocate path, plus we (may) need a copy of
 	 * path to tokenize if parents are specified */
-	if (NULL == (tmp = cli_strdup(path))) {
+	if (NULL == (tmp = strdup(path))) {
 		cli_error(CL_ENOMEM, "%s: path too big?", cmdname);
 		return 1;
@@ -129,7 +129,7 @@
 
 	/* TODO: Canonify the path prior to tokenizing it, see below */
-	dirs[i] = cli_strtok(tmp, "/");
+	dirs[i] = strtok(tmp, "/");
 	while (dirs[i] && i < 255)
-		dirs[++i] = cli_strtok(NULL, "/");
+		dirs[++i] = strtok(NULL, "/");
 
 	if (NULL == dirs[0])
