*** empty log message ***

This commit is contained in:
David Rose 2000-11-17 04:07:24 +00:00
parent 40226e0e47
commit 2433fd2a1a
4 changed files with 104 additions and 104 deletions

View File

@ -576,7 +576,7 @@ bool Downloader::
parse_http_response(const string &resp) { parse_http_response(const string &resp) {
size_t ws = resp.find(" ", 0); size_t ws = resp.find(" ", 0);
string httpstr = resp.substr(0, ws); string httpstr = resp.substr(0, ws);
if (httpstr != "HTTP/1.1") { if (!(httpstr == "HTTP/1.1")) {
downloader_cat.error() downloader_cat.error()
<< "Downloader::parse_http_response() - not HTTP/1.1 - got: " << "Downloader::parse_http_response() - not HTTP/1.1 - got: "
<< httpstr << endl; << httpstr << endl;