mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Omitted a '#if FIFO' in ext2_vnops.c
Submitted by: Justin Gibbs
This commit is contained in:
parent
f520ae1e5e
commit
e017ddbd9a
2 changed files with 4 additions and 0 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue