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:
Robert Watson 2005-09-12 12:15:12 +00:00
parent 062defcd30
commit 114538d85b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=150033

View file

@ -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
};
/*