ldap: Fixed DN variable warnings when Unicode is enabled

Use 'TCHAR *' for local DN variable rather than 'char *'.
This commit is contained in:
Steve Holme 2015-01-03 21:12:56 +00:00
parent ea4f98dca6
commit 5359936d07
1 changed files with 6 additions and 0 deletions

View File

@ -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) {