Omitted a '#if FIFO' in ext2_vnops.c

Submitted by:	Justin Gibbs
This commit is contained in:
John Dyson 1995-11-06 04:05:01 +00:00
parent f520ae1e5e
commit e017ddbd9a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12121
2 changed files with 4 additions and 0 deletions

View File

@ -231,8 +231,10 @@ struct vnodeopv_desc ext2fs_fifoop_opv_desc =
#if defined(__FreeBSD__)
VNODEOP_SET(ext2fs_vnodeop_opv_desc);
VNODEOP_SET(ext2fs_specop_opv_desc);
#if FIFO
VNODEOP_SET(ext2fs_fifoop_opv_desc);
#endif
#endif
/*
* Enabling cluster read/write operations.

View File

@ -231,8 +231,10 @@ struct vnodeopv_desc ext2fs_fifoop_opv_desc =
#if defined(__FreeBSD__)
VNODEOP_SET(ext2fs_vnodeop_opv_desc);
VNODEOP_SET(ext2fs_specop_opv_desc);
#if FIFO
VNODEOP_SET(ext2fs_fifoop_opv_desc);
#endif
#endif
/*
* Enabling cluster read/write operations.