From 18e7b52e8e95f7204d8ef7ff0f0ff0043afe45a9 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 5 Oct 2010 15:00:19 +0200 Subject: examples: use example.com in example URLs --- docs/examples/post-callback.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/examples/post-callback.c') diff --git a/docs/examples/post-callback.c b/docs/examples/post-callback.c index 1e688a1c8..ae4f4db98 100644 --- a/docs/examples/post-callback.c +++ b/docs/examples/post-callback.c @@ -51,8 +51,8 @@ int main(void) curl = curl_easy_init(); if(curl) { /* First set the URL that is about to receive our POST. */ - curl_easy_setopt(curl, CURLOPT_URL, - "http://receivingsite.com.pooh/index.cgi"); + curl_easy_setopt(curl, CURLOPT_URL, "http://example.com/index.cgi"); + /* Now specify we want to POST data */ curl_easy_setopt(curl, CURLOPT_POST, 1L); -- cgit v1.2.3