summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/util/sss_ldap.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/util/sss_ldap.c b/src/util/sss_ldap.c
index 1394b4d6c..761462ea0 100644
--- a/src/util/sss_ldap.c
+++ b/src/util/sss_ldap.c
@@ -266,20 +266,6 @@ static errno_t set_fd_flags_and_opts(int fd)
return ret;
}
- flags = fcntl(fd, F_GETFL, 0);
- if (flags == -1) {
- ret = errno;
- DEBUG(1, ("fcntl F_GETFL failed [%d][%s].\n", ret, strerror(ret)));
- return ret;
- }
-
- flags = fcntl(fd, F_SETFL, flags| O_NONBLOCK);
- if (flags == -1) {
- ret = errno;
- DEBUG(1, ("fcntl F_SETFL failed [%d][%s].\n", ret, strerror(ret)));
- return ret;
- }
-
/* SO_KEEPALIVE and TCP_NODELAY are set by OpenLDAP client libraries but
* failures are ignored.*/
ret = setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &dummy, sizeof(dummy));