diff options
Diffstat (limited to 'libbb/make_directory.c')
-rw-r--r-- | libbb/make_directory.c | 2 |
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 @@ | |||
33 | * Also create parent directories as necessary if flags contains | 33 | * Also create parent directories as necessary if flags contains |
34 | * FILEUTILS_RECUR. */ | 34 | * FILEUTILS_RECUR. */ |
35 | 35 | ||
36 | int make_directory (char *path, mode_t mode, int flags) | 36 | int make_directory (char *path, long mode, int flags) |
37 | { | 37 | { |
38 | if (!(flags & FILEUTILS_RECUR)) { | 38 | if (!(flags & FILEUTILS_RECUR)) { |
39 | if (mkdir (path, 0777) < 0) { | 39 | if (mkdir (path, 0777) < 0) { |