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); }