aboutsummaryrefslogtreecommitdiff
path: root/lib/ldap.c
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2007-08-22 10:14:57 +0000
committerGunter Knauf <gk@gknw.de>2007-08-22 10:14:57 +0000
commit5b4f50857a3f1e4c75bf1118858776735f0e2177 (patch)
tree7f3b816866b43162d93ed5b3f606446eb4ef606c /lib/ldap.c
parent6f10a718e4aeea4f3221c66b642bd52fe2cb5136 (diff)
for now comment the tls_start section...
Diffstat (limited to 'lib/ldap.c')
-rw-r--r--lib/ldap.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ldap.c b/lib/ldap.c
index 73d3ac0f9..20d288871 100644
--- a/lib/ldap.c
+++ b/lib/ldap.c
@@ -235,6 +235,7 @@ CURLcode Curl_ldap(struct connectdata *conn, bool *done)
status = CURLE_SSL_CERTPROBLEM;
goto quit;
}
+/*
rc = ldap_start_tls_s(server, NULL, NULL);
if (rc != LDAP_SUCCESS) {
failf(data, "LDAP local: ERROR starting SSL/TLS mode: %s",
@@ -242,6 +243,7 @@ CURLcode Curl_ldap(struct connectdata *conn, bool *done)
status = CURLE_SSL_CERTPROBLEM;
goto quit;
}
+*/
#else
/* we should probably never come up to here since configure
should check in first place if we can support LDAP SSL/TLS */