diff --git a/client/http.C b/client/http.C index 22e92cb931..2125de88e6 100644 --- a/client/http.C +++ b/client/http.C @@ -481,7 +481,11 @@ bool HTTP_OP_SET::poll() { htp->http_op_retval = 0; break; case HTTP_OP_POST: - unlink(htp->outfile); + retval = unlink(htp->outfile); + if (retval) { + printf("ERROR: unlink %d\n", retval); + } + // fall through case HTTP_OP_GET: htp->http_op_state = HTTP_STATE_REPLY_BODY; diff --git a/client/pers_file_xfer.C b/client/pers_file_xfer.C index 0fe48cd225..9a8ff49c07 100644 --- a/client/pers_file_xfer.C +++ b/client/pers_file_xfer.C @@ -86,8 +86,8 @@ bool PERS_FILE_XFER::start_xfer() { fxp = file_xfer; if (log_flags.file_xfer) { printf( - "started %s of %s\n", - (is_upload ? "upload" : "download"), fip->get_url() + "started %s of %s to %s\n", + (is_upload ? "upload" : "download"), fip->name, fip->get_url() ); } return true; diff --git a/html/user/index.html b/html/user/index.html index c241140af9..7b3c70081d 100644 --- a/html/user/index.html +++ b/html/user/index.html @@ -13,6 +13,6 @@ create an account, then download the BOINC client.