aboutsummaryrefslogtreecommitdiff
path: root/libbb/make_directory.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-08-02 09:58:19 +0000
committerEric Andersen <andersen@codepoet.org>2001-08-02 09:58:19 +0000
commit879d6c85af32a368feae1625b38716ea493de699 (patch)
treee34f0613f60a311d2715cdbce127a5c97faaaefb /libbb/make_directory.c
parent8a915880e7c86534859353f40ee18fbbe8004c26 (diff)
downloadbusybox-879d6c85af32a368feae1625b38716ea493de699.tar.gz
make_directory used mode as if it were an signed entity, but in fact
it was a mode_t which is unsigned. Fix it to be signed... -Erik
Diffstat (limited to 'libbb/make_directory.c')
-rw-r--r--libbb/make_directory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/make_directory.c b/libbb/make_directory.c
index 54d9b4c51..0a9d7b160 100644
--- a/libbb/make_directory.c
+++ b/libbb/make_directory.c
@@ -33,7 +33,7 @@
* Also create parent directories as necessary if flags contains
* FILEUTILS_RECUR. */
-int make_directory (char *path, mode_t mode, int flags)
+int make_directory (char *path, long mode, int flags)
{
if (!(flags & FILEUTILS_RECUR)) {
if (mkdir (path, 0777) < 0) {