summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_xxx.c
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/kern/subr_xxx.c
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/kern/subr_xxx.c')
-rw-r--r--sys/kern/subr_xxx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/subr_xxx.c b/sys/kern/subr_xxx.c
index 85ec59b..448a8e2 100644
--- a/sys/kern/subr_xxx.c
+++ b/sys/kern/subr_xxx.c
@@ -128,7 +128,7 @@ nokqfilter(dev, kn)
struct knote *kn;
{
- return (ENODEV);
+ return (1);
}
int
OpenPOWER on IntegriCloud