diff options
author | 2000-08-04 22:52:49 +0000 | |
---|---|---|
committer | 2000-08-04 22:52:49 +0000 | |
commit | 98ba16107ee7a23b75bbcbd974f09a50ad32d17e (patch) | |
tree | f3cfbe3c668bdf5f38a59f044b7c7e950be915de | |
parent | MaxStartups (diff) | |
download | wireguard-openbsd-98ba16107ee7a23b75bbcbd974f09a50ad32d17e.tar.xz wireguard-openbsd-98ba16107ee7a23b75bbcbd974f09a50ad32d17e.zip |
fix typo on utty creation; problem found by cfegan@cisco.com
Diffstat (limited to '')
-rw-r--r-- | etc/etc.i386/MAKEDEV | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/etc.i386/MAKEDEV b/etc/etc.i386/MAKEDEV index 0cf0c50737e..3cb1efd3161 100644 --- a/etc/etc.i386/MAKEDEV +++ b/etc/etc.i386/MAKEDEV @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: MAKEDEV,v 1.80 2000/07/06 22:01:29 fgsch Exp $ +# $OpenBSD: MAKEDEV,v 1.81 2000/08/04 22:52:49 fgsch Exp $ # $NetBSD: MAKEDEV,v 1.40 1996/03/31 00:50:47 perry Exp $ # # Copyright (c) 1990 The Regents of the University of California. @@ -276,7 +276,7 @@ ugen*) ;; utty*) - rm -f utty$unix + rm -f utty$unit mknod utty$unit c 66 $unit chown root.wheel utty$unit chmod 660 utty$unit |