aboutsummaryrefslogtreecommitdiff
path: root/src/sys/unix/uds/stream.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/unix/uds/stream.rs')
-rw-r--r--src/sys/unix/uds/stream.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/unix/uds/stream.rs b/src/sys/unix/uds/stream.rs
index 149dd14..9ae4867 100644
--- a/src/sys/unix/uds/stream.rs
+++ b/src/sys/unix/uds/stream.rs
@@ -13,7 +13,7 @@ pub(crate) fn connect(path: &Path) -> io::Result<net::UnixStream> {
match syscall!(connect(socket, sockaddr, socklen)) {
Ok(_) => {}
- Err(ref e) if e.kind() == io::ErrorKind::WouldBlock => {}
+ Err(ref err) if err.raw_os_error() == Some(libc::EINPROGRESS) => {}
Err(e) => {
// Close the socket if we hit an error, ignoring the error
// from closing since we can't pass back two errors.