diff options
Diffstat (limited to 'sys')
-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 0867d932175..4dd23897436 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.6 1999/07/18 00:12:04 deraadt Exp $ */ +/* $OpenBSD: linux_termios.c,v 1.7 2000/08/18 14:56:59 niklas Exp $ */ /* $NetBSD: linux_termios.c,v 1.3 1996/04/05 00:01:54 christos Exp $ */ /* @@ -645,6 +645,9 @@ linux_ioctl_termios(p, uap, retval) case LINUX_TIOCNOTTY: SCARG(&ia, com) = TIOCNOTTY; break; + case LINUX_TCSBRK: + SCARG(&ia, com) = TIOCSBRK; + break; case LINUX_TCXONC: switch ((int)SCARG(uap, data)) { case LINUX_TCOOFF: |