diff options
author | Richard Maw <richard.maw@codethink.co.uk> | 2012-04-05 13:12:48 +0100 |
---|---|---|
committer | Richard Maw <richard.maw@codethink.co.uk> | 2012-04-05 13:12:48 +0100 |
commit | bce68b99fecc431685db48b6d50515fd6a8f4b13 (patch) | |
tree | c55f8373298c20b5e1435bd6965ddd4b1ea2a4a3 /ccache.c | |
parent | da56250e3b3374393f0713ccd50190c30f570888 (diff) | |
parent | c4f0a589df8ac5eb47431de185330770cdc13a66 (diff) | |
download | ccache-baserock/http-ccache-morph.tar.gz |
Merge branch 'baserock/http-ccache' into baserock/http-ccache-morphbaserock/http-ccache-morph
Diffstat (limited to 'ccache.c')
-rw-r--r-- | ccache.c | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -313,7 +313,8 @@ get_remote_file(const char *name, const char *suffix, const char *path) } res = curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1l); if (res != CURLE_OK) { - cc_log("Curl could not set FAILONERROR: %u", res); + cc_log("Curl could not set FAILONERROR: %s", + curl_easy_strerror(res)); return res; } } @@ -326,7 +327,8 @@ get_remote_file(const char *name, const char *suffix, const char *path) } /* tell curl to download from this url */ if ((res = curl_easy_setopt(curl, CURLOPT_URL, url)) != CURLE_OK) { - cc_log("Curl failed to set url to %s: %u", url, res); + cc_log("Curl failed to set url to %s: %s", + url, curl_easy_strerror(res)); goto cleanup; } @@ -352,15 +354,15 @@ get_remote_file(const char *name, const char *suffix, const char *path) /* tell curl to write to that file */ res = curl_easy_setopt(curl, CURLOPT_WRITEDATA, dest); if (res != CURLE_OK) { - cc_log("Curl could not set output file to %s: %u", - tempfilename, res); + cc_log("Curl could not set output file to %s: %s", + tempfilename, curl_easy_strerror(res)); goto cleanup_rm; } /* do the download */ if ((res = curl_easy_perform(curl)) != CURLE_OK) { - cc_log("Curl could not download %s to %s: %u", - url, tempfilename, res); + cc_log("Curl could not download %s to %s: %s", + url, tempfilename, curl_easy_strerror(res)); goto cleanup_rm; } @@ -384,7 +386,7 @@ get_remote_file(const char *name, const char *suffix, const char *path) stats_update(STATS_DOWNLOADED); cleanup_rm: - x_unlink(tempfilename); + tmp_unlink(tempfilename); cleanup: if (dest) fclose(dest); free(tempfilename); |