mirror of
https://github.com/curl/curl.git
synced 2026-07-23 23:57:16 +03:00
Removed an extraneous \n that violated the SSO daemon protocol
This caused fake_ntlm to abort due to an invalid command causing sporadic test 2005 failures.
This commit is contained in:
parent
99848d3dab
commit
435e2bc757
2 changed files with 2 additions and 2 deletions
|
|
@ -962,7 +962,7 @@ CURLcode Curl_output_ntlm_sso(struct connectdata *conn,
|
|||
conn->response_header = NULL;
|
||||
break;
|
||||
case NTLMSTATE_TYPE2:
|
||||
input = aprintf("TT %s\n", conn->challenge_header);
|
||||
input = aprintf("TT %s", conn->challenge_header);
|
||||
if(!input)
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
res = sso_ntlm_response(conn,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue