From de6d8a9c415591487a0584a09755330ba505cfbd Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Wed, 13 May 2020 23:04:19 +0200 Subject: WIP clear O_NONBLOCK --- sysdep/unix/io.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sysdep/unix/io.c') diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index f647f228..87269203 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, 0) < 0) + return -3; log(L_TRACE "sk_connect_unix 4"); -- cgit v1.2.3