aboutsummaryrefslogtreecommitdiff
path: root/lib/vauth/digest.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/digest.c
parentaf996626885b82dcf25b93de8e0041be6c4f1555 (diff)
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/digest.c')
-rw-r--r--lib/vauth/digest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/vauth/digest.c b/lib/vauth/digest.c
index cc6f16972..fae5a4977 100644
--- a/lib/vauth/digest.c
+++ b/lib/vauth/digest.c
@@ -342,7 +342,7 @@ bool Curl_auth_is_digest_supported(void)
* data [in] - The session handle.
* chlg64 [in] - The base64 encoded challenge message.
* userp [in] - The user name.
- * passdwp [in] - The user's password.
+ * passwdp [in] - The user's password.
* service [in] - The service type such as http, smtp, pop or imap.
* outptr [in/out] - The address where a pointer to newly allocated memory
* holding the result will be stored upon completion.
@@ -668,7 +668,7 @@ CURLcode Curl_auth_decode_digest_http_message(const char *chlg,
*
* data [in] - The session handle.
* userp [in] - The user name.
- * passdwp [in] - The user's password.
+ * passwdp [in] - The user's password.
* request [in] - The HTTP request.
* uripath [in] - The path of the HTTP uri.
* digest [in/out] - The digest data struct being used and modified.
@@ -932,7 +932,7 @@ static CURLcode _Curl_auth_create_digest_http_message(
*
* data [in] - The session handle.
* userp [in] - The user name.
- * passdwp [in] - The user's password.
+ * passwdp [in] - The user's password.
* request [in] - The HTTP request.
* uripath [in] - The path of the HTTP uri.
* digest [in/out] - The digest data struct being used and modified.