27 Oct 2022 17:31:45 Miod Vallat <m...@online.fr>:

> Wait, this is wrong. All your
> 
>     (flags & (FWRITE | FREAD))
> 
> comparisons must be
> 
>     ((flags & (FWRITE | FREAD)) == (FWRITE | FREAD))
> 
> in order to truly catch full-duplex opens. Otherwise the condition will
> always be satisfied since one of FREAD or FWRITE will always be set...
Wrong set of sed'ed diffs, sorry.
Will resend the right ones later.

Reply via email to