aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/make_directory.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/make_directory.c b/libbb/make_directory.c
index 1c3026ccc..2a2788b68 100644
--- a/libbb/make_directory.c
+++ b/libbb/make_directory.c
@@ -58,10 +58,10 @@ int make_directory (char *path, long mode, int flags)
58 } 58 }
59 ret = mkdir(path, mode); 59 ret = mkdir(path, mode);
60 if (ret == -1) { 60 if (ret == -1) {
61 if (errno == EEXIST) { 61 if ((flags == FILEUTILS_RECUR) && (errno == EEXIST)) {
62 ret = 0; 62 ret = 0;
63 } else { 63 } else {
64 perror_msg("Cannot create directory %s", path); 64 perror_msg("Cannot create directory '%s'", path);
65 } 65 }
66 } 66 }
67 return(ret); 67 return(ret);