summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 73c94f8)
raw | patch | inline | side by side (parent: 73c94f8)
author | Marc Fournier <marc.fournier@camptocamp.com> | |
Sat, 4 Apr 2015 20:35:55 +0000 (22:35 +0200) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Sat, 4 Apr 2015 20:35:55 +0000 (22:35 +0200) |
src/curl.c | patch | blob | history |
diff --git a/src/curl.c b/src/curl.c
index 52653fb08153da48af465d304ce9e66c1bc912dc..ac55953c1c327bce3b34bb1a568cfeedf90174a0 100644 (file)
--- a/src/curl.c
+++ b/src/curl.c
status = curl_easy_perform (wp->curl);
if (status != CURLE_OK)
{
- ERROR ("curl plugin: curl_easy_perform failed with staus %i: %s",
+ ERROR ("curl plugin: curl_easy_perform failed with status %i: %s",
status, wp->curl_errbuf);
return (-1);
}
long response_code = 0;
status = curl_easy_getinfo(wp->curl, CURLINFO_RESPONSE_CODE, &response_code);
if(status != CURLE_OK) {
- ERROR ("curl plugin: Fetching response code failed with staus %i: %s",
+ ERROR ("curl plugin: Fetching response code failed with status %i: %s",
status, wp->curl_errbuf);
} else {
cc_submit_response_code(wp, response_code);