diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-04-08 01:53:44 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-04-08 01:53:44 +0000 |
commit | 5136a1c3e86827f48bb593fb4a531337d2be74e1 (patch) | |
tree | 78e96cd28c98642d5becabc3480dccf273ac0879 /etc/rc | |
parent | 2ae7c5bb97924a1ef5ebfaf5378a1cfc056af4f1 (diff) |
fix another non-POSIX chown; Chuck Yerkes
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.225 2003/03/23 18:45:34 marc Exp $ +# $OpenBSD: rc,v 1.226 2003/04/08 01:53:43 millert Exp $ # System startup script run by init on autoboot # or after single-user. @@ -328,7 +328,7 @@ dev_mkdb echo "." chmod 666 /dev/tty[pqrstuvwxyzPQRST]* -chown root.wheel /dev/tty[pqrstuvwxyzPQRST]* +chown root:wheel /dev/tty[pqrstuvwxyzPQRST]* # check the password temp/lock file if [ -f /etc/ptmp ]; then |