summaryrefslogtreecommitdiff
path: root/sys/kern/vfs_sync.c
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/kern/vfs_sync.c
parentc663795752232f934b1f838e28540feceaf5f23e (diff)
retire vn_default_error() and replace all instances
with eopnotsupp() instead; ok blambert@
Diffstat (limited to 'sys/kern/vfs_sync.c')
-rw-r--r--sys/kern/vfs_sync.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_sync.c b/sys/kern/vfs_sync.c
index 01b8f766784..c4da9824420 100644
--- a/sys/kern/vfs_sync.c
+++ b/sys/kern/vfs_sync.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_sync.c,v 1.43 2007/06/01 23:47:56 deraadt Exp $ */
+/* $OpenBSD: vfs_sync.c,v 1.44 2008/05/08 17:45:45 thib Exp $ */
/*
* Portions of this code are:
@@ -268,7 +268,7 @@ int sync_print(void *);
int (**sync_vnodeop_p)(void *);
struct vnodeopv_entry_desc sync_vnodeop_entries[] = {
- { &vop_default_desc, vn_default_error },
+ { &vop_default_desc, eopnotsupp },
{ &vop_close_desc, sync_close }, /* close */
{ &vop_fsync_desc, sync_fsync }, /* fsync */
{ &vop_inactive_desc, sync_inactive }, /* inactive */