diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-01-29 20:50:33 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-01-29 20:51:04 +0000 |
commit | eb91e1a58f0622fadd46c7e896a081e28e7b3fbf (patch) | |
tree | 9ce549354f5540598126b41c357d8b21ebf71e07 | |
parent | 2319221c836b8d4cb1cc1f2d15784a9890421aa5 (diff) |
ntlm: Coding style policing dating back to 2011
-rw-r--r-- | lib/curl_ntlm_msgs.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/curl_ntlm_msgs.c b/lib/curl_ntlm_msgs.c index 5b8da64b6..00f69a551 100644 --- a/lib/curl_ntlm_msgs.c +++ b/lib/curl_ntlm_msgs.c @@ -256,8 +256,8 @@ CURLcode Curl_ntlm_decode_type2_target(struct SessionHandle *data, * Returns CURLE_OK on success. */ CURLcode Curl_ntlm_decode_type2_message(struct SessionHandle *data, - const char* header, - struct ntlmdata* ntlm) + const char *header, + struct ntlmdata *ntlm) { #ifndef USE_WINDOWS_SSPI static const char type2_marker[] = { 0x02, 0x00, 0x00, 0x00 }; @@ -363,8 +363,7 @@ void Curl_ntlm_sspi_cleanup(struct ntlmdata *ntlm) #ifndef USE_WINDOWS_SSPI /* copy the source to the destination and fill in zeroes in every other destination byte! */ -static void unicodecpy(unsigned char *dest, - const char *src, size_t length) +static void unicodecpy(unsigned char *dest, const char *src, size_t length) { size_t i; for(i = 0; i < length; i++) { |