diff options
Diffstat (limited to 'lib/vauth')
| -rw-r--r-- | lib/vauth/digest.c | 2 | ||||
| -rw-r--r-- | lib/vauth/digest_sspi.c | 2 | ||||
| -rw-r--r-- | lib/vauth/spnego_sspi.c | 2 | 
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/vauth/digest.c b/lib/vauth/digest.c index ca1d0c24a..7d9200ad0 100644 --- a/lib/vauth/digest.c +++ b/lib/vauth/digest.c @@ -60,7 +60,7 @@     what ultimately goes over the network.  */  #define CURL_OUTPUT_DIGEST_CONV(a, b) \ -  result = Curl_convert_to_network(a, (char *)b, strlen((const char*)b)); \ +  result = Curl_convert_to_network(a, (char *)b, strlen((const char *)b)); \    if(result) { \      free(b); \      return result; \ diff --git a/lib/vauth/digest_sspi.c b/lib/vauth/digest_sspi.c index 29526fc64..b9ceb12a9 100644 --- a/lib/vauth/digest_sspi.c +++ b/lib/vauth/digest_sspi.c @@ -414,7 +414,7 @@ CURLcode Curl_auth_create_digest_http_message(struct Curl_easy *data,        return CURLE_OUT_OF_MEMORY;      /* Populate our identity domain */ -    if(Curl_override_sspi_http_realm((const char*) digest->input_token, +    if(Curl_override_sspi_http_realm((const char *) digest->input_token,                                       &identity))        return CURLE_OUT_OF_MEMORY; diff --git a/lib/vauth/spnego_sspi.c b/lib/vauth/spnego_sspi.c index 672b43fa4..5fa95e2eb 100644 --- a/lib/vauth/spnego_sspi.c +++ b/lib/vauth/spnego_sspi.c @@ -264,7 +264,7 @@ CURLcode Curl_auth_create_spnego_message(struct Curl_easy *data,    /* Base64 encode the already generated response */    result = Curl_base64_encode(data, -                              (const char*) nego->output_token, +                              (const char *) nego->output_token,                                nego->output_token_length,                                outptr, outlen);  | 
