summaryrefslogtreecommitdiff
path: root/sutils/MAKEDEV.sh
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1999-09-14 09:43:27 +0000
committerThomas Bushnell <thomas@gnu.org>1999-09-14 09:43:27 +0000
commit1ef97f0ec0da8413ada0638fc4077bc1e1f93e72 (patch)
treedfcc73701ba92c7e7b46fcef4b4ae531287c87db /sutils/MAKEDEV.sh
parent85e7f1d7d6166da2dd9b062af31da7175e25b586 (diff)
1999-09-14 Thomas Bushnell, BSG <tb@mit.edu>
* MAKEDEV.sh (mkdev): pty master and slave nodes should have mode 666, not 640. Reported by Marcus Brinkmann <Marcus.Brinkmann@ruhr-uni-bochum.de>.
Diffstat (limited to 'sutils/MAKEDEV.sh')
-rw-r--r--sutils/MAKEDEV.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sutils/MAKEDEV.sh b/sutils/MAKEDEV.sh
index fc7ec6ab..77dd1dbb 100644
--- a/sutils/MAKEDEV.sh
+++ b/sutils/MAKEDEV.sh
@@ -109,9 +109,9 @@ function mkdev {
[pt]ty[pqrstuvwxyzPQRST]?)
# Make one pty, both the master and slave halves.
local id="${I:3}"
- st pty$id root 640 /hurd/term ${DEVDIR}/pty$id \
+ st pty$id root 666 /hurd/term ${DEVDIR}/pty$id \
pty-master ${DEVDIR}/tty$id
- st tty$id root 640 /hurd/term ${DEVDIR}/tty$id \
+ st tty$id root 666 /hurd/term ${DEVDIR}/tty$id \
pty-slave ${DEVDIR}/pty$id
;;
[pt]ty[pqrstuvwxyzPQRST])