aboutsummaryrefslogtreecommitdiff
path: root/lib/curl_sasl.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2016-03-12 11:56:10 +0000
committerSteve Holme <steve_holme@hotmail.com>2016-03-12 11:56:10 +0000
commitdbb90e7e9f988534fc972d5789a666243b073949 (patch)
tree375f2a8d51fbcde632f24ec97c3b1db632eca465 /lib/curl_sasl.c
parent06ccaa0c68eba7d16531a00620724d4b1170ecdd (diff)
downloadgnurl-dbb90e7e9f988534fc972d5789a666243b073949.tar.gz
gnurl-dbb90e7e9f988534fc972d5789a666243b073949.tar.bz2
gnurl-dbb90e7e9f988534fc972d5789a666243b073949.zip
ntlm: Corrected some typos in function descriptions
Diffstat (limited to 'lib/curl_sasl.c')
-rw-r--r--lib/curl_sasl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/curl_sasl.c b/lib/curl_sasl.c
index ef6283c5a..fd446a542 100644
--- a/lib/curl_sasl.c
+++ b/lib/curl_sasl.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 2012 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 2012 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -1143,11 +1143,11 @@ void Curl_sasl_digest_cleanup(struct digestdata *digest)
/*
* Curl_sasl_ntlm_cleanup()
*
- * This is used to clean up the ntlm specific data.
+ * This is used to clean up the NTLM specific data.
*
* Parameters:
*
- * ntlm [in/out] - The ntlm data struct being cleaned up.
+ * ntlm [in/out] - The NTLM data struct being cleaned up.
*
*/
void Curl_sasl_ntlm_cleanup(struct ntlmdata *ntlm)
@@ -1230,7 +1230,7 @@ void Curl_sasl_cleanup(struct connectdata *conn, unsigned int authused)
#endif
#if defined(USE_NTLM)
- /* Cleanup the ntlm structure */
+ /* Cleanup the NTLM structure */
if(authused == SASL_MECH_NTLM) {
Curl_sasl_ntlm_cleanup(&conn->ntlm);
}