summaryrefslogtreecommitdiffstats
path: root/sys/kern/tty_pty.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/kern/tty_pty.c')
-rw-r--r--sys/kern/tty_pty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/tty_pty.c b/sys/kern/tty_pty.c
index 1561eb1..d3ba47a 100644
--- a/sys/kern/tty_pty.c
+++ b/sys/kern/tty_pty.c
@@ -85,7 +85,7 @@ static struct cdevsw pts_cdevsw = {
.d_poll = ttypoll,
.d_name = "pts",
.d_maj = CDEV_MAJOR_S,
- .d_flags = D_TTY | D_KQFILTER,
+ .d_flags = D_TTY,
.d_kqfilter = ttykqfilter,
};
@@ -99,7 +99,7 @@ static struct cdevsw ptc_cdevsw = {
.d_poll = ptcpoll,
.d_name = "ptc",
.d_maj = CDEV_MAJOR_C,
- .d_flags = D_TTY | D_KQFILTER,
+ .d_flags = D_TTY,
.d_kqfilter = ttykqfilter,
};
OpenPOWER on IntegriCloud