mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove DFLAG_SEEKABLE from fifo file descriptors: fifos are not seekable
according to POSIX, not to mention the fact that it doesn't make sense (and hence isn't really implemented). This causes the fifo_misc regression test to succeed.
This commit is contained in:
parent
062defcd30
commit
114538d85b
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ struct fileops fifo_ops_f = {
|
|||
.fo_kqfilter = fifo_kqfilter_f,
|
||||
.fo_stat = fifo_stat_f,
|
||||
.fo_close = fifo_close_f,
|
||||
.fo_flags = DFLAG_PASSABLE | DFLAG_SEEKABLE
|
||||
.fo_flags = DFLAG_PASSABLE
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue