diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-10 07:34:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-06-10 07:34:15 +0000 |
commit | f0565ae322394c8120343781f8fd5fbe44400139 (patch) | |
tree | 1757bc153fa7a3f57e7c16534a483542f6272505 /sys/dev/ic/z8530tty.c | |
parent | 41bd5ccaa5417d8f417adc05e5225d5a96b4550a (diff) |
tty_attach()
Diffstat (limited to 'sys/dev/ic/z8530tty.c')
-rw-r--r-- | sys/dev/ic/z8530tty.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/ic/z8530tty.c b/sys/dev/ic/z8530tty.c index 9a62a507339..2aedeeaa73d 100644 --- a/sys/dev/ic/z8530tty.c +++ b/sys/dev/ic/z8530tty.c @@ -1,5 +1,5 @@ -/* $OpenBSD: z8530tty.c,v 1.4 1996/05/26 00:27:08 deraadt Exp $ */ -/* $NetBSD: z8530tty.c,v 1.8 1996/05/17 22:49:23 gwr Exp $ */ +/* $OpenBSD: z8530tty.c,v 1.5 1996/06/10 07:34:14 deraadt Exp $ */ +/* $NetBSD: z8530tty.c,v 1.8.4.1 1996/06/03 20:01:07 gwr Exp $ */ /* * Copyright (c) 1994 Gordon W. Ross @@ -259,6 +259,7 @@ zstty_attach(parent, self, aux) tp->t_oproc = zsstart; tp->t_param = zsparam; tp->t_hwiflow = zshwiflow; + tty_attach(tp); zst->zst_tty = tp; zst->zst_rbhiwat = zstty_rbuf_size; /* impossible value */ |