diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-05-13 21:26:53 +0200 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-05-13 21:26:53 +0200 |
commit | ce8d2560e8265050550f0dcf8119ab056d482b30 (patch) | |
tree | 8ca5b4e04625b535ce19cdb2d0e2449bc426aa49 /sysdep/unix/io.c | |
parent | 1ba46f4d04302cc109025938fe36625f220f13eb (diff) |
WIP disable blocking
Diffstat (limited to 'sysdep/unix/io.c')
-rw-r--r-- | sysdep/unix/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index 1beb8245..f647f228 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -1546,8 +1546,8 @@ sk_connect_unix(sock *s, char *name, socklen_t namelen) log(L_TRACE "sk_connect_unix 3"); - if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0) - return -3; + /* if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0) */ + /* return -3; */ log(L_TRACE "sk_connect_unix 4"); |