From: Steve Holme Date: Sat, 3 Jan 2015 21:12:56 +0000 (+0000) Subject: ldap: Fixed DN variable warnings when Unicode is enabled X-Git-Tag: curl-7_40_0~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5359936d07fee01ba832d251891c659f8c9bf7ca;p=curl ldap: Fixed DN variable warnings when Unicode is enabled Use 'TCHAR *' for local DN variable rather than 'char *'. --- diff --git a/lib/ldap.c b/lib/ldap.c index fc027f786..7e9ac8935 100644 --- a/lib/ldap.c +++ b/lib/ldap.c @@ -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) {