diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/libbb.h | 2 | ||||
-rw-r--r-- | libbb/make_directory.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libbb/libbb.h b/libbb/libbb.h index df52027ce..70ac36a86 100644 --- a/libbb/libbb.h +++ b/libbb/libbb.h @@ -259,7 +259,7 @@ extern int create_icmp_socket(void); char *dirname (const char *path); -int make_directory (char *path, mode_t mode, int flags); +int make_directory (char *path, long mode, int flags); const char *u_signal_names(const char *str_sig, int *signo, int startnum); 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) { |