diff options
| author | 1997-12-10 13:35:53 +0000 | |
|---|---|---|
| committer | 1997-12-10 13:35:53 +0000 | |
| commit | 7f11e0316b8c7aa7d46939e8b8cc86becd5debeb (patch) | |
| tree | d4d5708d0e0421fcc780f927afd6df7db8484d57 /sys/compat/linux/linux_termios.c | |
| parent | add GIFMETRIC and GIFMTU (diff) | |
| download | wireguard-openbsd-7f11e0316b8c7aa7d46939e8b8cc86becd5debeb.tar.xz wireguard-openbsd-7f11e0316b8c7aa7d46939e8b8cc86becd5debeb.zip | |
emulate set controlling tty ioctl
Diffstat (limited to 'sys/compat/linux/linux_termios.c')
| -rw-r--r-- | sys/compat/linux/linux_termios.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_termios.c b/sys/compat/linux/linux_termios.c index 0dad771c5d5..61bb9d13282 100644 --- a/sys/compat/linux/linux_termios.c +++ b/sys/compat/linux/linux_termios.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_termios.c,v 1.4 1996/10/16 12:25:37 deraadt Exp $ */ +/* $OpenBSD: linux_termios.c,v 1.5 1997/12/10 13:35:53 provos Exp $ */ /* $NetBSD: linux_termios.c,v 1.3 1996/04/05 00:01:54 christos Exp $ */ /* @@ -623,6 +623,9 @@ linux_ioctl_termios(p, uap, retval) case LINUX_TIOCNXCL: SCARG(&ia, com) = TIOCNXCL; break; + case LINUX_TIOCSCTTY: + SCARG(&ia, com) = TIOCSCTTY; + break; case LINUX_TIOCCONS: SCARG(&ia, com) = TIOCCONS; break; |
