diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2008-05-08 17:45:46 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2008-05-08 17:45:46 +0000 |
commit | b3fe4a82b9c59193788f636ef8321ca582f7c456 (patch) | |
tree | 104aa0b409788809a80a585feae3138637223309 /sys/kern/vfs_sync.c | |
parent | c663795752232f934b1f838e28540feceaf5f23e (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.c | 4 |
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 */ |