aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2015-06-17 02:49:14 -0400
committerJay Satiro <raysatiro@yahoo.com>2015-06-17 02:49:14 -0400
commitf72b30e6fbea128dc190f63ce3774de941c27a40 (patch)
tree3dc90c0627de1ec658d0ec82204a1c5041c83935
parent52d83cb0c602851f5867024049b7a38633101cbc (diff)
CURLOPT_ERRORBUFFER.3: Fix example, escape backslashes
-rw-r--r--docs/libcurl/opts/CURLOPT_ERRORBUFFER.313
1 files changed, 7 insertions, 6 deletions
diff --git a/docs/libcurl/opts/CURLOPT_ERRORBUFFER.3 b/docs/libcurl/opts/CURLOPT_ERRORBUFFER.3
index 24b405490..2d4dc2350 100644
--- a/docs/libcurl/opts/CURLOPT_ERRORBUFFER.3
+++ b/docs/libcurl/opts/CURLOPT_ERRORBUFFER.3
@@ -65,17 +65,18 @@ if(curl) {
/* perform the request */
res = curl_easy_perform(curl);
- /* if the request did not complete correctly, show the error information.
- if no detailed error information was written to errbuf show the more generic
- information from curl_easy_strerror instead.
+ /* if the request did not complete correctly, show the error
+ information. if no detailed error information was written to errbuf
+ show the more generic information from curl_easy_strerror instead.
*/
if(res != CURLE_OK) {
size_t len = strlen(errbuf);
- fprintf(stderr, "\nlibcurl: (%d) ", res);
+ fprintf(stderr, "\\nlibcurl: (%d) ", res);
if(len)
- fprintf(stderr, "%s%s", errbuf, ((errbuf[len - 1] != '\n') ? "\n" : ""));
+ fprintf(stderr, "%s%s", errbuf,
+ ((errbuf[len - 1] != '\\n') ? "\\n" : ""));
else
- fprintf(stderr, "%s\n", curl_easy_strerror(res));
+ fprintf(stderr, "%s\\n", curl_easy_strerror(res));
}
}
.fi