mirror of
https://github.com/curl/curl.git
synced 2026-07-23 01:47:16 +03:00
winbind: Fixed ntlm_auth expecting eol following commit e17c1b25bc
This commit is contained in:
parent
90acbfd52e
commit
0074c9f5d1
1 changed files with 1 additions and 1 deletions
|
|
@ -356,7 +356,7 @@ CURLcode Curl_output_ntlm_wb(struct connectdata *conn,
|
|||
conn->response_header = NULL;
|
||||
break;
|
||||
case NTLMSTATE_TYPE2:
|
||||
input = aprintf("TT %s", conn->challenge_header);
|
||||
input = aprintf("TT %s\n", conn->challenge_header);
|
||||
if(!input)
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
res = ntlm_wb_response(conn, input, ntlm->state);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue