Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-10-13 10:25:52 +0400
committerEric Andersen <andersen@codepoet.org>2004-10-13 10:25:52 +0400
commit0e020d10257a7f1e4cd526eb6c49ba67a442ba85 (patch)
tree0f595c0a178264458bdeadab565bb5892f006d97 /libbb/make_directory.c
parent9315842242f18e3c5cf706b2bb349757928b2b40 (diff)
Make certain clients of bb_make_directory default to honoring
the user's umask
Diffstat (limited to 'libbb/make_directory.c')
-rw-r--r--libbb/make_directory.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/libbb/make_directory.c b/libbb/make_directory.c
index d07ccb93c..d96acf0d9 100644
--- a/libbb/make_directory.c
+++ b/libbb/make_directory.c
@@ -49,7 +49,14 @@ int bb_make_directory (char *path, long mode, int flags)
struct stat st;
mask = umask(0);
- umask(mask & ~0300);
+ if (mode == -1) {
+ umask(mask);
+ mode = (S_IXUSR | S_IXGRP | S_IXOTH |
+ S_IWUSR | S_IWGRP | S_IWOTH |
+ S_IRUSR | S_IRGRP | S_IROTH) & ~mask;
+ } else {
+ umask(mask & ~0300);
+ }
do {
c = 0;