*** empty log message ***

svn path=/trunk/boinc/; revision=10954
This commit is contained in:
Rom Walton 2006-08-21 19:14:52 +00:00
parent 4029ce3044
commit 86f841d824
2 changed files with 11 additions and 4 deletions

View File

@ -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

View File

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