aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_sspi.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2015-08-01 22:53:18 +0100
committerSteve Holme <steve_holme@hotmail.com>2015-08-01 23:09:03 +0100
commitf75b6065db8c2c817224b6622bc24eb2d7fc2744 (patch)
tree1bdbe3b1c5017b85d0c306207575621d51feae98 /lib/curl_sspi.c
parent11ab3f8918eabb364060714e609ebd8fc2f3b336 (diff)
downloadgnurl-f75b6065db8c2c817224b6622bc24eb2d7fc2744.tar.gz
gnurl-f75b6065db8c2c817224b6622bc24eb2d7fc2744.tar.bz2
gnurl-f75b6065db8c2c817224b6622bc24eb2d7fc2744.zip
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.
Diffstat (limited to 'lib/curl_sspi.c')
-rw-r--r--lib/curl_sspi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_sspi.c b/lib/curl_sspi.c
index d2c37670e..070424dd1 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;