diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-10-05 15:00:19 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-10-05 15:00:19 +0200 |
commit | 18e7b52e8e95f7204d8ef7ff0f0ff0043afe45a9 (patch) | |
tree | 16916d3680982a91be43e16cad44df14d3dd6d7b /docs/examples/getinfo.c | |
parent | 6d272e53a2b109400c1ee9a31ffa40f288459b41 (diff) | |
download | curl-18e7b52e8e95f7204d8ef7ff0f0ff0043afe45a9.tar.gz |
examples: use example.com in example URLs
Diffstat (limited to 'docs/examples/getinfo.c')
-rw-r--r-- | docs/examples/getinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/getinfo.c b/docs/examples/getinfo.c index a9630191f..0d8f1f2e9 100644 --- a/docs/examples/getinfo.c +++ b/docs/examples/getinfo.c @@ -19,7 +19,7 @@ int main(void) curl = curl_easy_init(); if(curl) { /* http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTURL */ - curl_easy_setopt(curl, CURLOPT_URL, "curl.haxx.se"); + curl_easy_setopt(curl, CURLOPT_URL, "http://www.example.com/"); /* http://curl.haxx.se/libcurl/c/curl_easy_perform.html */ res = curl_easy_perform(curl); |