* fhandler_fifo.cc (fhandler_fifo::open): Accommodate previous return value

change to setup_overlapped.
This commit is contained in:
Christopher Faylor 2010-04-06 15:09:44 +00:00
parent 65ee447a02
commit 35297ebe0b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-04-06 Christopher Faylor <me+cygwin@cgf.cx>
* fhandler_fifo.cc (fhandler_fifo::open): Accommodate previous return
value change to setup_overlapped.
2010-04-02 Christopher Faylor <me+cygwin@cgf.cx>
* fhandler.h (fhandler_base::has_ongoing_io): Declare virtual method.

View File

@ -143,7 +143,7 @@ fhandler_fifo::open (int flags, mode_t)
__seterrno ();
res = 0;
}
else if (!setup_overlapped ())
else if (setup_overlapped ())
{
CloseHandle (h);
__seterrno ();