X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/d00328e20768f90b0ee6ee0c2425997b3c3ff521..994a09e91130d52c4ae573cf7536eb68f1876883:/src/src/lookups/ldap.c diff --git a/src/src/lookups/ldap.c b/src/src/lookups/ldap.c index 330164570..7a21e8e01 100644 --- a/src/src/lookups/ldap.c +++ b/src/src/lookups/ldap.c @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/lookups/ldap.c,v 1.3 2004/11/11 12:05:54 ph10 Exp $ */ +/* $Cambridge: exim/src/src/lookups/ldap.c,v 1.4 2004/11/17 16:31:45 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -380,9 +380,14 @@ if (lcp == NULL) #ifdef LDAP_X_OPT_CONNECT_TIMEOUT if (tcplimit > 0) { - unsigned int timeout1000 = tcplimit*1000; + int timeout1000 = tcplimit*1000; ldap_set_option(ld, LDAP_X_OPT_CONNECT_TIMEOUT, (void *)&timeout1000); } + else + { + int notimeout = LDAP_X_IO_TIMEOUT_NO_TIMEOUT; + ldap_set_option(ld, LDAP_X_OPT_CONNECT_TIMEOUT, (void *)¬imeout); + } #endif /* Set the TCP connect timeout. This works with OpenLDAP 2.2.14. */