diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2011-07-28 12:41:44 -0700 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2011-07-28 12:41:44 -0700 |
commit | 435e2bc75797b14bc27dc4048b7fa1f3caa446f1 (patch) | |
tree | ceba8092a03d071edf204f4cd723ff4dacf978ca /lib | |
parent | 99848d3dab864f7ca51e977ec64d5ce9bafbe41b (diff) |
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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http_ntlm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index efc38c7d5..79481a46d 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -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, |