diff options
author | phk <phk@FreeBSD.org> | 2004-06-01 11:57:15 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-06-01 11:57:15 +0000 |
commit | e0c89dae136c255495a8b2e404c5ef2e6e133ad5 (patch) | |
tree | 75dcf5ac97a47b9e9ea96c6adb7945b7752dcea1 /sys/kern/tty_pty.c | |
parent | 19bbdd84d6c9de6fae8bfcc9628ca41c14737f73 (diff) | |
download | FreeBSD-src-e0c89dae136c255495a8b2e404c5ef2e6e133ad5.zip FreeBSD-src-e0c89dae136c255495a8b2e404c5ef2e6e133ad5.tar.gz |
There is no need to explicitly call the stop function. In all likelyhood
->l_close() did it and ttyclose certainly will.
Diffstat (limited to 'sys/kern/tty_pty.c')
-rw-r--r-- | sys/kern/tty_pty.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/kern/tty_pty.c b/sys/kern/tty_pty.c index 314bf16..2e51b3b 100644 --- a/sys/kern/tty_pty.c +++ b/sys/kern/tty_pty.c @@ -208,7 +208,6 @@ ptsclose(dev, flag, mode, td) tp = dev->si_tty; err = (*linesw[tp->t_line].l_close)(tp, flag); - ptsstop(tp, FREAD|FWRITE); (void) ttyclose(tp); return (err); } |