diff options
-rw-r--r-- | docs/libcurl/opts/CURLOPT_PREREQDATA.3 | 2 | ||||
-rw-r--r-- | docs/libcurl/opts/CURLOPT_PREREQFUNCTION.3 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/libcurl/opts/CURLOPT_PREREQDATA.3 b/docs/libcurl/opts/CURLOPT_PREREQDATA.3 index 07497a83b..4ccc07109 100644 --- a/docs/libcurl/opts/CURLOPT_PREREQDATA.3 +++ b/docs/libcurl/opts/CURLOPT_PREREQDATA.3 @@ -43,7 +43,7 @@ static int prereq_callback(void *clientp, int conn_primary_port, int conn_local_port) { - printf("Connection made to %s:%s\n", conn_primary_ip, conn_primary_port); + printf("Connection made to %s:%s\\n", conn_primary_ip, conn_primary_port); return CURL_PREREQFUNC_OK; } diff --git a/docs/libcurl/opts/CURLOPT_PREREQFUNCTION.3 b/docs/libcurl/opts/CURLOPT_PREREQFUNCTION.3 index dcc782f9d..50a4adf35 100644 --- a/docs/libcurl/opts/CURLOPT_PREREQFUNCTION.3 +++ b/docs/libcurl/opts/CURLOPT_PREREQFUNCTION.3 @@ -86,7 +86,7 @@ static int prereq_callback(void *clientp, int conn_primary_port, int conn_local_port) { - printf("Connection made to %s:%s\n", conn_primary_ip, conn_primary_port); + printf("Connection made to %s:%s\\n", conn_primary_ip, conn_primary_port); return CURL_PREREQFUNC_OK; } |