summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-09-30 08:42:11 +0000
committerJim Meyering <jim@meyering.net>2000-09-30 08:42:11 +0000
commitf14dbb1710d6cf7ee0acb5c65af367d1c8e322c0 (patch)
tree2c5934a3c852d70b8270d1dd798b8f471e0caeeb
parentec8df1d330e078fed51ca2fef45af838ef8d5fd8 (diff)
downloadcoreutils-f14dbb1710d6cf7ee0acb5c65af367d1c8e322c0.tar.xz
*** empty log message ***
-rw-r--r--old/fileutils/ChangeLog12
1 files changed, 7 insertions, 5 deletions
diff --git a/old/fileutils/ChangeLog b/old/fileutils/ChangeLog
index a53983615..c1846df1f 100644
--- a/old/fileutils/ChangeLog
+++ b/old/fileutils/ChangeLog
@@ -5,11 +5,13 @@
* src/install.c: Remove big, option-describing comment block.
(main): Rename local `symbolic_mode' to `specified_mode'.
- * src/mkdir.c (main): Rather than setting the umask to 0 and hand-apply
- the previously-set umask, pass the full create mask (0777 or 0666) to
- mkdir and let the kernel apply the umask. The difference shows up only
- on file systems with ACL support when the containing directory has a
- default ACL. Patch by Andreas Gruenbacher.
+ * src/mkdir.c (main): Don't set the umask to 0 and hand-apply
+ the previously-set umask unconditionally. Do that only when a
+ MODE has been specified. Otherwise, call mkdir with the full
+ creation mask (0777 or 0666) and let the kernel apply the umask.
+ The difference shows up only on file systems with ACL support
+ when the containing directory has a default ACL.
+ Patch by Andreas Gruenbacher.
(main): Rename local `symbolic_mode' to `specified_mode'.
* tests/mkdir/perm: New test.