From: Steve Holme Date: Sat, 1 Aug 2015 21:53:18 +0000 (+0100) Subject: sspi: Fix typo from left over from old code which referenced NTLM X-Git-Tag: curl-7_44_0~55 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f75b6065db8c2c817224b6622bc24eb2d7fc2744;p=thirdparty%2Fcurl.git 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. --- diff --git a/lib/curl_sspi.c b/lib/curl_sspi.c index d2c37670ee..070424dd13 100644 --- a/lib/curl_sspi.c +++ b/lib/curl_sspi.c @@ -224,7 +224,7 @@ CURLcode Curl_create_sspi_identity(const char *userp, const char *passwdp, 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); if(!passwd.tchar_ptr) return CURLE_OUT_OF_MEMORY;