From: Daniel Stenberg Date: Wed, 7 Nov 2001 09:39:49 +0000 (+0000) Subject: adjusted after Ramana Mokkapati's comments X-Git-Tag: curl-7_9_2~116 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a0cde30419987394bcf15eea5eecbbf0f9c759f;p=thirdparty%2Fcurl.git adjusted after Ramana Mokkapati's comments --- diff --git a/lib/ldap.c b/lib/ldap.c index 37dd8a5821..a4878cdd77 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -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;