summaryrefslogtreecommitdiffstats
path: root/sys/dev/rc
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2003-03-03 16:24:47 +0000
committerphk <phk@FreeBSD.org>2003-03-03 16:24:47 +0000
commitb67232b68cdcbb54dc3a2311609828aced7ecc25 (patch)
tree882ecd3451f5d9cf0721da1f4041961ac8528fe7 /sys/dev/rc
parent8b25734b0597b951f2979117d6d4848fbca61813 (diff)
downloadFreeBSD-src-b67232b68cdcbb54dc3a2311609828aced7ecc25.zip
FreeBSD-src-b67232b68cdcbb54dc3a2311609828aced7ecc25.tar.gz
Make nokqfilter() return the correct return value.
Ditch the D_KQFILTER flag which was used to prevent calling NULL pointers.
Diffstat (limited to 'sys/dev/rc')
-rw-r--r--sys/dev/rc/rc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c
index eb023d8..07c0c5b 100644
--- a/sys/dev/rc/rc.c
+++ b/sys/dev/rc/rc.c
@@ -154,7 +154,7 @@ static struct cdevsw rc_cdevsw = {
.d_poll = ttypoll,
.d_name = "rc",
.d_maj = CDEV_MAJOR,
- .d_flags = D_TTY | D_KQFILTER,
+ .d_flags = D_TTY,
.d_kqfilter = ttykqfilter,
};
OpenPOWER on IntegriCloud