whoops, broke https via proxy

This commit is contained in:
David Rose 2002-10-04 19:01:43 +00:00
parent d1053bf2c3
commit daedc5239b

View File

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