From 2c8b5597f8875ce46a19dc4df0a0eb661491b2d3 Mon Sep 17 00:00:00 2001 From: David Rose Date: Wed, 25 Sep 2002 20:31:02 +0000 Subject: [PATCH] oops --- panda/src/downloader/httpClient.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/panda/src/downloader/httpClient.cxx b/panda/src/downloader/httpClient.cxx index 2ec82aa217..9dafb97d9c 100644 --- a/panda/src/downloader/httpClient.cxx +++ b/panda/src/downloader/httpClient.cxx @@ -89,7 +89,7 @@ get_http(const URLSpec &url, const string &body) { if (BIO_do_connect(bio) <= 0) { downloader_cat.info() - << "Could not contact server " << server << "\n"; + << "Could not contact server " << server_str << "\n"; #ifndef NDEBUG ERR_print_errors_fp(stderr); #endif @@ -122,7 +122,7 @@ get_https(const URLSpec &url, const string &body) { if (BIO_do_connect(sbio) <= 0) { downloader_cat.info() - << "Could not contact server " << server << "\n"; + << "Could not contact server " << server_str << "\n"; #ifndef NDEBUG ERR_print_errors_fp(stderr); #endif @@ -131,7 +131,7 @@ get_https(const URLSpec &url, const string &body) { if (BIO_do_handshake(sbio) <= 0) { downloader_cat.info() - << "Could not establish SSL handshake with " << server << "\n"; + << "Could not establish SSL handshake with " << server_str << "\n"; #ifndef NDEBUG ERR_print_errors_fp(stderr); #endif @@ -158,7 +158,7 @@ get_http_proxy(const URLSpec &url, const string &body) { if (BIO_do_connect(bio) <= 0) { downloader_cat.info() - << "Could not contact proxy " << proxy_server << "\n"; + << "Could not contact proxy " << proxy_server_str << "\n"; #ifndef NDEBUG ERR_print_errors_fp(stderr); #endif @@ -186,7 +186,7 @@ get_https_proxy(const URLSpec &url, const string &body) { if (BIO_do_connect(bio) <= 0) { downloader_cat.info() - << "Could not contact proxy " << proxy_server << "\n"; + << "Could not contact proxy " << proxy_server_str << "\n"; #ifndef NDEBUG ERR_print_errors_fp(stderr); #endif