Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-13 07:47:09 +0300
committerEric Andersen <andersen@codepoet.org>1999-11-13 07:47:09 +0300
commitb6a44b8d39b7834ab9f6c43938f4b58f135e846e (patch)
treed9bd903d4e30ea4faf1977a514853c5aac83690c /utility.c
parenteded54bd96ed0394844f9ba23c5ab54dff8a917f (diff)
updates for the day
Diffstat (limited to 'utility.c')
-rw-r--r--utility.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/utility.c b/utility.c
index 77eb5f2dd..b4dd0ccc3 100644
--- a/utility.c
+++ b/utility.c
@@ -488,12 +488,8 @@ extern void createPath (const char *name, int mode)
while (cp) {
cpOld = cp;
cp = strchr (cp + 1, '/');
-
*cpOld = '\0';
-
- if (mkdir (buf, cp ? 0777 : mode) == 0)
- printf ("Directory \"%s\" created\n", buf);
-
+ mkdir (buf, cp ? 0777 : mode);
*cpOld = '/';
}
}