aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/getinfo.c
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/getinfo.c')
-rw-r--r--docs/examples/getinfo.c2
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);