1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

sspi: Fix typo from left over from old code which referenced NTLM

References to NTLM in the identity generation should have been removed
in commit c469941293 but not all were.
This commit is contained in:
Steve Holme 2015-08-01 22:53:18 +01:00
parent 11ab3f8918
commit f75b6065db

View File

@ -224,7 +224,7 @@ CURLcode Curl_create_sspi_identity(const char *userp, const char *passwdp,
Curl_unicodefree(useranddomain.tchar_ptr); Curl_unicodefree(useranddomain.tchar_ptr);
/* Setup ntlm identity's password and length */ /* Setup the identity's password and length */
passwd.tchar_ptr = Curl_convert_UTF8_to_tchar((char *)passwdp); passwd.tchar_ptr = Curl_convert_UTF8_to_tchar((char *)passwdp);
if(!passwd.tchar_ptr) if(!passwd.tchar_ptr)
return CURLE_OUT_OF_MEMORY; return CURLE_OUT_OF_MEMORY;