summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThordur I. Bjornsson <thib@cvs.openbsd.org>2008-08-20 12:08:05 +0000
committerThordur I. Bjornsson <thib@cvs.openbsd.org>2008-08-20 12:08:05 +0000
commit87f2ff3673f23eddbf974a11f9752217c3dbdc35 (patch)
treeaa0a4f70cf76eaecfa2c17fc4dba4f24fcb732bf
parentae40cc90b11c5d23bc76db88c0fa03ed3dff53bb (diff)
Return EINVAL instead of '1' for invalid kq filters.
From NetBSD; OK art@, blambert@
-rw-r--r--sys/nfs/nfs_kq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs_kq.c b/sys/nfs/nfs_kq.c
index 4f2f63de097..bf98a6056cc 100644
--- a/sys/nfs/nfs_kq.c
+++ b/sys/nfs/nfs_kq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nfs_kq.c,v 1.12 2008/06/26 05:42:20 ray Exp $ */
+/* $OpenBSD: nfs_kq.c,v 1.13 2008/08/20 12:08:04 thib Exp $ */
/* $NetBSD: nfs_kq.c,v 1.7 2003/10/30 01:43:10 simonb Exp $ */
/*-
@@ -277,7 +277,7 @@ nfs_kqfilter(void *v)
kn->kn_fop = &nfsvnode_filtops;
break;
default:
- return (1);
+ return (EINVAL);
}
kn->kn_hook = vp;