diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-09-14 09:43:27 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-09-14 09:43:27 +0000 |
commit | 1ef97f0ec0da8413ada0638fc4077bc1e1f93e72 (patch) | |
tree | dfcc73701ba92c7e7b46fcef4b4ae531287c87db /sutils | |
parent | 85e7f1d7d6166da2dd9b062af31da7175e25b586 (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')
-rw-r--r-- | sutils/ChangeLog | 6 | ||||
-rw-r--r-- | sutils/MAKEDEV.sh | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/sutils/ChangeLog b/sutils/ChangeLog index 7d16a5d1..c706adb0 100644 --- a/sutils/ChangeLog +++ b/sutils/ChangeLog @@ -1,3 +1,9 @@ +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>. + 1999-07-10 Roland McGrath <roland@baalperazim.frob.com> * clookup.c: Add #include <sys/mman.h>. 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]) |