]> git.saurik.com Git - apt.git/blobdiff - methods/http.cc
* merged the "apt--install-task" branch
[apt.git] / methods / http.cc
index cb63ada499f9df866f96f143a0eec53608fbf7ad..1f3b038bc4a515391ff0feb8ac3ca326733cee1b 100644 (file)
@@ -656,7 +656,7 @@ void HttpMethod::SendReq(FetchItem *Itm,CircleBuf &Out)
       will glitch HTTP/1.0 proxies because they do not filter it out and 
       pass it on, HTTP/1.1 says the connection should default to keep alive
       and we expect the proxy to do this */
-   if (Proxy.empty() == true)
+   if (Proxy.empty() == true || Proxy.Host.empty())
       sprintf(Buf,"GET %s HTTP/1.1\r\nHost: %s\r\nConnection: keep-alive\r\n",
              QuoteString(Uri.Path,"~").c_str(),ProperHost.c_str());
    else