]> granicus.if.org Git - curl/commitdiff
curl_ntlm_msgs: make < 80 columns wide
authorDaniel Stenberg <daniel@haxx.se>
Fri, 8 Aug 2014 06:34:51 +0000 (08:34 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 8 Aug 2014 06:34:51 +0000 (08:34 +0200)
lib/curl_ntlm_msgs.c

index e3116a29512f01b225412707c881a79b05cd1c50..225551493123891307198e71343fb73cc8b6413b 100644 (file)
@@ -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);