mirror of
https://github.com/moparisthebest/curl
synced 2024-12-22 08:08:50 -05:00
CURLOPT_ERRORBUFFER.3: Fix example, escape backslashes
This commit is contained in:
parent
52d83cb0c6
commit
f72b30e6fb
@ -65,17 +65,18 @@ if(curl) {
|
|||||||
/* perform the request */
|
/* perform the request */
|
||||||
res = curl_easy_perform(curl);
|
res = curl_easy_perform(curl);
|
||||||
|
|
||||||
/* if the request did not complete correctly, show the error information.
|
/* if the request did not complete correctly, show the error
|
||||||
if no detailed error information was written to errbuf show the more generic
|
information. if no detailed error information was written to errbuf
|
||||||
information from curl_easy_strerror instead.
|
show the more generic information from curl_easy_strerror instead.
|
||||||
*/
|
*/
|
||||||
if(res != CURLE_OK) {
|
if(res != CURLE_OK) {
|
||||||
size_t len = strlen(errbuf);
|
size_t len = strlen(errbuf);
|
||||||
fprintf(stderr, "\nlibcurl: (%d) ", res);
|
fprintf(stderr, "\\nlibcurl: (%d) ", res);
|
||||||
if(len)
|
if(len)
|
||||||
fprintf(stderr, "%s%s", errbuf, ((errbuf[len - 1] != '\n') ? "\n" : ""));
|
fprintf(stderr, "%s%s", errbuf,
|
||||||
|
((errbuf[len - 1] != '\\n') ? "\\n" : ""));
|
||||||
else
|
else
|
||||||
fprintf(stderr, "%s\n", curl_easy_strerror(res));
|
fprintf(stderr, "%s\\n", curl_easy_strerror(res));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.fi
|
.fi
|
||||||
|
Loading…
Reference in New Issue
Block a user