mirror of
https://github.com/curl/curl.git
synced 2026-04-26 09:32:12 +03:00
adjusted after Ramana Mokkapati's comments
This commit is contained in:
parent
3552775b52
commit
2a0cde3041
1 changed files with 2 additions and 2 deletions
|
|
@ -177,8 +177,8 @@ CURLcode Curl_ldap(struct connectdata *conn)
|
|||
status = CURLE_COULDNT_CONNECT;
|
||||
} else {
|
||||
rc = ldap_simple_bind_s(server,
|
||||
data->state.user[0]?data->state.user:NULL,
|
||||
data->state.passwd[0]?data->state.passwd:NULL);
|
||||
conn->bits.user_passwd?data->state.user:NULL,
|
||||
conn->bits.user_passwd?data->state.passwd:NULL);
|
||||
if (rc != 0) {
|
||||
failf(data, "LDAP: %s", ldap_err2string(rc));
|
||||
status = CURLE_LDAP_CANNOT_BIND;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue