diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-11-23 08:30:18 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-11-24 23:58:22 +0100 |
commit | 8657c268e1938c4bd9200b7f5ab69ba156310403 (patch) | |
tree | 99d43e4150f9f57a1b62f3439da028fa38e55769 /lib/vauth | |
parent | ec0a5c96ac2f31d09651f04c8b24a30d1f6fa118 (diff) | |
download | curl-8657c268e1938c4bd9200b7f5ab69ba156310403.tar.gz |
checksrc: white space edits to comply to stricter checksrc
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); |