From: thib Date: Wed, 20 Aug 2008 12:08:04 +0000 (+0000) Subject: Return EINVAL instead of '1' for invalid kq filters. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=17a84e5db53fdb574a945b798e780bd316eeb7d9;p=openbsd Return EINVAL instead of '1' for invalid kq filters. From NetBSD; OK art@, blambert@ --- 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;