summaryrefslogtreecommitdiff
path: root/sys/nfs
diff options
context:
space:
mode:
authorThordur I. Bjornsson <thib@cvs.openbsd.org>2008-05-08 17:45:46 +0000
committerThordur I. Bjornsson <thib@cvs.openbsd.org>2008-05-08 17:45:46 +0000
commitb3fe4a82b9c59193788f636ef8321ca582f7c456 (patch)
tree104aa0b409788809a80a585feae3138637223309 /sys/nfs
parentc663795752232f934b1f838e28540feceaf5f23e (diff)
retire vn_default_error() and replace all instances
with eopnotsupp() instead; ok blambert@
Diffstat (limited to 'sys/nfs')
-rw-r--r--sys/nfs/nfs_vnops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs_vnops.c b/sys/nfs/nfs_vnops.c
index f6ee534a54e..7a52ca76de9 100644
--- a/sys/nfs/nfs_vnops.c
+++ b/sys/nfs/nfs_vnops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nfs_vnops.c,v 1.82 2008/04/22 20:59:37 thib Exp $ */
+/* $OpenBSD: nfs_vnops.c,v 1.83 2008/05/08 17:45:45 thib Exp $ */
/* $NetBSD: nfs_vnops.c,v 1.62.4.1 1996/07/08 20:26:52 jtc Exp $ */
/*
@@ -87,7 +87,7 @@
*/
int (**nfsv2_vnodeop_p)(void *);
struct vnodeopv_entry_desc nfsv2_vnodeop_entries[] = {
- { &vop_default_desc, vn_default_error },
+ { &vop_default_desc, eopnotsupp },
{ &vop_lookup_desc, nfs_lookup }, /* lookup */
{ &vop_create_desc, nfs_create }, /* create */
{ &vop_mknod_desc, nfs_mknod }, /* mknod */