diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-02-06 18:01:39 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-02-06 18:01:39 +0100 |
commit | 1267770a9db90b2a29553e682e3b63aa86b0b34d (patch) | |
tree | fe2fd7ccf4768867d91f14ab930ced2cc23e4f95 | |
parent | 5cdd120f0c6423a42fa2eec2311126142a9a49f0 (diff) | |
download | busybox-w32-1267770a9db90b2a29553e682e3b63aa86b0b34d.tar.gz busybox-w32-1267770a9db90b2a29553e682e3b63aa86b0b34d.tar.bz2 busybox-w32-1267770a9db90b2a29553e682e3b63aa86b0b34d.zip |
fix compile failure in previous commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-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 64736efbe..9b03bb8d0 100644 --- a/libbb/make_directory.c +++ b/libbb/make_directory.c | |||
@@ -121,7 +121,7 @@ int FAST_FUNC bb_make_directory(char *path, long mode, int flags) | |||
121 | * an error. */ | 121 | * an error. */ |
122 | if (mode != -1) { | 122 | if (mode != -1) { |
123 | //bb_error_msg("chmod 0%03lo mkdir '%s'", mode, path); | 123 | //bb_error_msg("chmod 0%03lo mkdir '%s'", mode, path); |
124 | if (chmod(path, mode) < 0)) { | 124 | if (chmod(path, mode) < 0) { |
125 | fail_msg = "set permissions of"; | 125 | fail_msg = "set permissions of"; |
126 | if (flags & FILEUTILS_IGNORE_CHMOD_ERR) { | 126 | if (flags & FILEUTILS_IGNORE_CHMOD_ERR) { |
127 | flags = 0; | 127 | flags = 0; |