aboutsummaryrefslogtreecommitdiff
path: root/lib/vauth/ntlm.c
diff options
context:
space:
mode:
authorDaniel Gustafsson <daniel@yesql.se>2018-10-03 10:27:27 +0200
committerDaniel Gustafsson <daniel@yesql.se>2018-10-03 10:27:27 +0200
commite182fc1613196540df12bcaa846e79f80aa5432c (patch)
treee0ec9f12b18564a7970171cca74d98ce22284a48 /lib/vauth/ntlm.c
parentaf996626885b82dcf25b93de8e0041be6c4f1555 (diff)
downloadgnurl-e182fc1613196540df12bcaa846e79f80aa5432c.tar.gz
gnurl-e182fc1613196540df12bcaa846e79f80aa5432c.tar.bz2
gnurl-e182fc1613196540df12bcaa846e79f80aa5432c.zip
comment: Fix multiple typos in function parameters
Ensure that the parameters in the comment match the actual names in the prototype. Closes #3079 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
Diffstat (limited to 'lib/vauth/ntlm.c')
-rw-r--r--lib/vauth/ntlm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/vauth/ntlm.c b/lib/vauth/ntlm.c
index cdb8d8f0d..11f42f504 100644
--- a/lib/vauth/ntlm.c
+++ b/lib/vauth/ntlm.c
@@ -354,7 +354,7 @@ static void unicodecpy(unsigned char *dest, const char *src, size_t length)
*
* data [in] - The session handle.
* userp [in] - The user name in the format User or Domain\User.
- * passdwp [in] - The user's password.
+ * passwdp [in] - The user's password.
* service [in] - The service type such as http, smtp, pop or imap.
* host [in] - The host name.
* ntlm [in/out] - The NTLM data struct being used and modified.
@@ -481,7 +481,7 @@ CURLcode Curl_auth_create_ntlm_type1_message(struct Curl_easy *data,
*
* data [in] - The session handle.
* userp [in] - The user name in the format User or Domain\User.
- * passdwp [in] - The user's password.
+ * passwdp [in] - The user's password.
* ntlm [in/out] - The NTLM data struct being used and modified.
* outptr [in/out] - The address where a pointer to newly allocated memory
* holding the result will be stored upon completion.