diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-08-08 08:34:51 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-08-08 08:34:51 +0200 |
commit | 159c3aafd8b9aecc3902db7747e28dd476eb0e85 (patch) | |
tree | 959e8d2a6fac02befe4ceca6b688ec71cf4c211c | |
parent | df739784e5cba0d032e0675d49fb449042799104 (diff) |
curl_ntlm_msgs: make < 80 columns wide
-rw-r--r-- | lib/curl_ntlm_msgs.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/curl_ntlm_msgs.c b/lib/curl_ntlm_msgs.c index e3116a295..225551493 100644 --- a/lib/curl_ntlm_msgs.c +++ b/lib/curl_ntlm_msgs.c @@ -576,7 +576,8 @@ CURLcode Curl_ntlm_create_type1_message(const char *userp, /* Return with binary blob encoded into base64 */ #ifdef USE_WINDOWS_SSPI - return Curl_base64_encode(NULL, (char *)ntlm->output_token, size, outptr, outlen); + return Curl_base64_encode(NULL, (char *)ntlm->output_token, size, + outptr, outlen); #else return Curl_base64_encode(NULL, (char *)ntlmbuf, size, outptr, outlen); #endif @@ -676,7 +677,8 @@ CURLcode Curl_ntlm_create_type3_message(struct SessionHandle *data, size = type_3_buf.cbBuffer; /* Return with binary blob encoded into base64 */ - result = Curl_base64_encode(NULL, (char *)ntlm->output_token, size, outptr, outlen); + result = Curl_base64_encode(NULL, (char *)ntlm->output_token, size, + outptr, outlen); Curl_ntlm_sspi_cleanup(ntlm); |