diff --git a/checkin_notes b/checkin_notes index 97ca2f8b17..c0d7c7c0ee 100755 --- a/checkin_notes +++ b/checkin_notes @@ -3088,3 +3088,9 @@ Walt 21 Mar 2005 Rom 21 Mar 2006 (HEAD) - Tag for 5.3.28 release, all platforms boinc_core_release_5_3_28 + +Rom 21 Mar 2006 + - Compile fix for Linux + + client/ + http_curl.C diff --git a/client/http_curl.C b/client/http_curl.C index 1a4cc2f0b4..766289236e 100644 --- a/client/http_curl.C +++ b/client/http_curl.C @@ -630,7 +630,7 @@ curlioerr libcurl_ioctl(CURL *handle, curliocmd cmd, HTTP_OP* phop) { case CURLIOCMD_RESTARTREAD: phop->lSeek = 0; phop->bytes_xferred = phop->file_offset; - phop->bSentHeader = FALSE; + phop->bSentHeader = false; break; default: // should never get here return CURLIOE_UNKNOWNCMD; @@ -686,7 +686,7 @@ void HTTP_OP::setupProxyCurl() { pi.http_server_name, pi.http_server_port, pi.http_user_name, pi.http_user_passwd); */ - auth_flag = TRUE; + auth_flag = true; if (auth_type) { curlErr = curl_easy_setopt(curlEasy, CURLOPT_PROXYAUTH, auth_type); } else { diff --git a/win_build/installerv2/BOINC.ism b/win_build/installerv2/BOINC.ism index 3b583b0639..4932493bca 100644 Binary files a/win_build/installerv2/BOINC.ism and b/win_build/installerv2/BOINC.ism differ