Skip to content

Commit

Permalink
curl_ntlm_msgs: make < 80 columns wide
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Aug 8, 2014
1 parent df73978 commit 159c3aa
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/curl_ntlm_msgs.c
Expand Up @@ -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
Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit 159c3aa

Please sign in to comment.