summaryrefslogtreecommitdiffstats
path: root/daemon/umask.c
Commit message (Collapse)AuthorAgeFilesLines
* Improved checking, documentation of modes (RHBZ#582901, RHBZ#582929).Richard Jones2010-04-201-0/+5
| | | | | | | | | | | | chmod: Disallow negative mode, document mode affected by umask. mkdir-mode: Disallow negative mode, document that filesystems may interpret the mode in different ways. mknod: Disallow negative mode, document mode affected by umask. umask: Check the range of umask mask value carefully. (cherry picked from commit 61ab83d19009a8006dd73ebe16d22494b78be4d1)
* remove trailing blanksJim Meyering2009-07-031-1/+1
|
* New commands: mknod, mkfifo, mknod_b, mknod_c and umask.Richard W.M. Jones2009-06-301-0/+46
These commands are used to create block and char device nodes or FIFOs (named pipes) in the filesystem. The umask command is required also because the permissions used by mknod are masked by the umask. Also document and guarantee that the umask starts as 022.