From: Jay Satiro Date: Wed, 17 Jun 2015 06:49:14 +0000 (-0400) Subject: CURLOPT_ERRORBUFFER.3: Fix example, escape backslashes X-Git-Tag: curl-7_44_0~158 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f72b30e6fbea128dc190f63ce3774de941c27a40;p=thirdparty%2Fcurl.git CURLOPT_ERRORBUFFER.3: Fix example, escape backslashes --- diff --git a/docs/libcurl/opts/CURLOPT_ERRORBUFFER.3 b/docs/libcurl/opts/CURLOPT_ERRORBUFFER.3 index 24b4054907..2d4dc2350a 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