Fixed permissions of /dev/tty.

This commit is contained in:
Bruce Evans 1995-12-22 15:57:31 +00:00
parent 79c0c4b77f
commit 95ff47b69f

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)tty_tty.c 8.2 (Berkeley) 9/23/93
* $Id: tty_tty.c,v 1.8 1995/12/08 11:17:17 julian Exp $
* $Id: tty_tty.c,v 1.9 1995/12/08 23:21:37 phk Exp $
*/
/*
@ -186,7 +186,7 @@ ctty_drvinit(void *unused)
ctty_devsw_installed = 1;
#ifdef DEVFS
ctty_devfs_token = devfs_add_devsw( "/", "tty",
&ctty_cdevsw, 0, DV_CHR, 0, 0, 0600);
&ctty_cdevsw, 0, DV_CHR, 0, 0, 0666);
#endif
}
}