From cfa81b8fb00928a88ed4b76807f564d3a895a493 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Sat, 2 Jun 2012 14:03:55 +0100 Subject: [PATCH] sasl: Corrected variable names in comments and parameters --- lib/curl_sasl.c | 2 +- lib/curl_sasl.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/curl_sasl.c b/lib/curl_sasl.c index 343a1bb5da..e9a3c18d6c 100644 --- a/lib/curl_sasl.c +++ b/lib/curl_sasl.c @@ -88,7 +88,7 @@ CURLcode Curl_sasl_create_plain_message(struct SessionHandle *data, * Parameters: * * data [in] - The session handle. - * userp [in] - The user name. + * valuep [in] - The user name or user's password. * outptr [in/out] - The address where a pointer to newly allocated memory * holding the result will be stored upon completion. * outlen [out] - The length of the output message. diff --git a/lib/curl_sasl.h b/lib/curl_sasl.h index f1b104f30c..572eaed748 100644 --- a/lib/curl_sasl.h +++ b/lib/curl_sasl.h @@ -56,7 +56,7 @@ CURLcode Curl_sasl_create_ntlm_type1_message(const char *userp, /* This is used to decode an incoming NTLM type-2 message and generate a base64 encoded type-3 response */ CURLcode Curl_sasl_decode_ntlm_type2_message(struct SessionHandle *data, - const char *type2msg, + const char *header, const char *userp, const char *passwdp, struct ntlmdata *ntlm,