mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
ldap: Fixed DN variable warnings when Unicode is enabled
Use 'TCHAR *' for local DN variable rather than 'char *'.
This commit is contained in:
parent
ea4f98dca6
commit
5359936d07
@ -430,8 +430,14 @@ static CURLcode Curl_ldap(struct connectdata *conn, bool *done)
|
||||
|
||||
/* Get the DN and write it to the client */
|
||||
{
|
||||
#if defined(CURL_LDAP_WIN) && \
|
||||
(defined(USE_WIN32_IDN) || defined(USE_WINDOWS_SSPI))
|
||||
TCHAR *dn = ldap_get_dn(server, entryIterator);
|
||||
size_t dn_len = _tcslen(dn);
|
||||
#else
|
||||
char *dn = ldap_get_dn(server, entryIterator);
|
||||
size_t dn_len = strlen(dn);
|
||||
#endif
|
||||
|
||||
result = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"DN: ", 4);
|
||||
if(result) {
|
||||
|
Loading…
Reference in New Issue
Block a user