diff options
author | 2002-02-13 20:21:54 +0000 | |
---|---|---|
committer | 2002-02-13 20:21:54 +0000 | |
commit | 181b724bfba21ab149edf48ecdb181b390298ea6 (patch) | |
tree | a8dcc49765a1dcdf3f56d551932e8a24bdfd7880 | |
parent | sync (diff) | |
download | wireguard-openbsd-181b724bfba21ab149edf48ecdb181b390298ea6.tar.xz wireguard-openbsd-181b724bfba21ab149edf48ecdb181b390298ea6.zip |
fix tty/pty #'s (off by one)
-rw-r--r-- | etc/etc.hppa/MAKEDEV.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/etc.hppa/MAKEDEV.md b/etc/etc.hppa/MAKEDEV.md index 6419b551f50..b8bac944c89 100644 --- a/etc/etc.hppa/MAKEDEV.md +++ b/etc/etc.hppa/MAKEDEV.md @@ -1,5 +1,5 @@ vers(__file__, - {-$OpenBSD: MAKEDEV.md,v 1.2 2002/02/09 16:59:50 deraadt Exp $-}, + {-$OpenBSD: MAKEDEV.md,v 1.3 2002/02/13 20:21:54 todd Exp $-}, etc.MACHINE)dnl dnl dnl Copyright (c) 2001 Todd T. Fries <todd@OpenBSD.org> @@ -41,8 +41,8 @@ _DEV(rd,9,3) _TITLE(term) _DEV(com,23) _TITLE(pty) -_DEV(tty,5) -_DEV(pty,6) +_DEV(tty,4) +_DEV(pty,5) _TITLE(prn) _DEV(lpt,30) _TITLE(call) |