1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

for now comment the tls_start section...

This commit is contained in:
Gunter Knauf 2007-08-22 10:14:57 +00:00
parent 6f10a718e4
commit 5b4f50857a

View File

@ -235,6 +235,7 @@ CURLcode Curl_ldap(struct connectdata *conn, bool *done)
status = CURLE_SSL_CERTPROBLEM; status = CURLE_SSL_CERTPROBLEM;
goto quit; goto quit;
} }
/*
rc = ldap_start_tls_s(server, NULL, NULL); rc = ldap_start_tls_s(server, NULL, NULL);
if (rc != LDAP_SUCCESS) { if (rc != LDAP_SUCCESS) {
failf(data, "LDAP local: ERROR starting SSL/TLS mode: %s", 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; status = CURLE_SSL_CERTPROBLEM;
goto quit; goto quit;
} }
*/
#else #else
/* we should probably never come up to here since configure /* we should probably never come up to here since configure
should check in first place if we can support LDAP SSL/TLS */ should check in first place if we can support LDAP SSL/TLS */