diff options
author | Michael Brown <mcb30@etherboot.org> | 2007-12-07 00:52:48 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2007-12-07 00:52:48 +0000 |
commit | 698b5bc887109c90ab4e6ff5bb65189f639d972b (patch) | |
tree | 139ede1e2a8c5b95d16af8a3c85780ea78c2f3c6 | |
parent | df868476e7872c3ebd8c6e2a21f8365858907dc7 (diff) | |
download | ipxe-698b5bc887109c90ab4e6ff5bb65189f639d972b.tar.gz |
Fix a minor logical error in posix_io.c
-rw-r--r-- | src/core/posix_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/posix_io.c b/src/core/posix_io.c index 530ce651..27c72100 100644 --- a/src/core/posix_io.c +++ b/src/core/posix_io.c @@ -264,7 +264,7 @@ int select ( fd_set *readfds, int wait ) { if ( ! file ) return -EBADF; if ( ( list_empty ( &file->data ) ) && - ( file->rc != -EINPROGRESS ) ) + ( file->rc == -EINPROGRESS ) ) continue; /* Data is available or status has changed */ FD_ZERO ( readfds ); |