From daedc5239bf37a509795a4c3647009c9d5c40218 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 4 Oct 2002 19:01:43 +0000 Subject: [PATCH] whoops, broke https via proxy --- panda/src/downloader/httpClient.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/panda/src/downloader/httpClient.cxx b/panda/src/downloader/httpClient.cxx index 3757c76c0b..8d2b69a77c 100644 --- a/panda/src/downloader/httpClient.cxx +++ b/panda/src/downloader/httpClient.cxx @@ -532,7 +532,8 @@ get_https_proxy(const string &method, const URLSpec &url, const string &body) { ostringstream request; request << "CONNECT " << url.get_server() << ":" << url.get_port() - << " " << get_http_version_string() << "\r\n"; + << " " << get_http_version_string() << "\r\n" + << "\r\n"; string request_str = request.str(); #ifndef NDEBUG