summaryrefslogtreecommitdiff
path: root/sys/ufs/ext2fs
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/ufs/ext2fs
parentc663795752232f934b1f838e28540feceaf5f23e (diff)
retire vn_default_error() and replace all instances
with eopnotsupp() instead; ok blambert@
Diffstat (limited to 'sys/ufs/ext2fs')
-rw-r--r--sys/ufs/ext2fs/ext2fs_vnops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ufs/ext2fs/ext2fs_vnops.c b/sys/ufs/ext2fs/ext2fs_vnops.c
index aa5b14efebf..8a957ae11bc 100644
--- a/sys/ufs/ext2fs/ext2fs_vnops.c
+++ b/sys/ufs/ext2fs/ext2fs_vnops.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ext2fs_vnops.c,v 1.49 2007/09/23 20:15:07 millert Exp $ */
+/* $OpenBSD: ext2fs_vnops.c,v 1.50 2008/05/08 17:45:45 thib Exp $ */
/* $NetBSD: ext2fs_vnops.c,v 1.1 1997/06/11 09:34:09 bouyer Exp $ */
/*
@@ -1257,7 +1257,7 @@ ext2fs_reclaim(void *v)
/* Global vfs data structures for ext2fs. */
int (**ext2fs_vnodeop_p)(void *);
struct vnodeopv_entry_desc ext2fs_vnodeop_entries[] = {
- { &vop_default_desc, vn_default_error },
+ { &vop_default_desc, eopnotsupp },
{ &vop_lookup_desc, ext2fs_lookup }, /* lookup */
{ &vop_create_desc, ext2fs_create }, /* create */
{ &vop_mknod_desc, ext2fs_mknod }, /* mknod */