From 86f841d8245bf7e9441b4d7568b417c39249695e Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Mon, 21 Aug 2006 19:14:52 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=10954 --- checkin_notes | 11 +++++++++++ client/http_curl.C | 4 ---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/checkin_notes b/checkin_notes index 34c888c5bd..5a371828b4 100755 --- a/checkin_notes +++ b/checkin_notes @@ -9056,3 +9056,14 @@ David 21 Aug 2006 clientgui/ ViewStatistics.cpp + +Rom 21 Aug 2006 + - Remove the suppression of the "Expect: 100 continue" in HTTP header. + This bug fix from Ian Hay was originally to fix some proxy issues. + We do not know which proxy issues it actually fixes, we are waiting + on some follow-up from Ian. In the mean time this should allow + NTLM auth on an HTTP post operation. + + client/ + http_curl.C + diff --git a/client/http_curl.C b/client/http_curl.C index 371c2a214a..198b4dc5e2 100644 --- a/client/http_curl.C +++ b/client/http_curl.C @@ -386,10 +386,6 @@ The checking this option controls is of the identity that the server claims. The } } - // suppress Expect line in header (avoids problems with some proxies) - // - pcurlList = curl_slist_append(pcurlList, "Expect:"); - if (pcurlList) { // send custom headers if required curlErr = curl_easy_setopt(curlEasy, CURLOPT_HTTPHEADER, pcurlList); }