aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/ftpget.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-10-05 15:00:19 +0200
committerDaniel Stenberg <daniel@haxx.se>2010-10-05 15:00:19 +0200
commit18e7b52e8e95f7204d8ef7ff0f0ff0043afe45a9 (patch)
tree16916d3680982a91be43e16cad44df14d3dd6d7b /docs/examples/ftpget.c
parent6d272e53a2b109400c1ee9a31ffa40f288459b41 (diff)
examples: use example.com in example URLs
Diffstat (limited to 'docs/examples/ftpget.c')
-rw-r--r--docs/examples/ftpget.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/examples/ftpget.c b/docs/examples/ftpget.c
index 78727e7ef..3c3888a20 100644
--- a/docs/examples/ftpget.c
+++ b/docs/examples/ftpget.c
@@ -52,12 +52,10 @@ int main(void)
curl = curl_easy_init();
if(curl) {
/*
- * Get curl 7.9.2 from sunet.se's FTP site. curl 7.9.2 is most likely not
- * present there by the time you read this, so you'd better replace the
- * URL with one that works!
+ * You better replace the URL with one that works!
*/
curl_easy_setopt(curl, CURLOPT_URL,
- "ftp://ftp.sunet.se/pub/www/utilities/curl/curl-7.9.2.tar.gz");
+ "ftp://ftp.example.com/pub/www/utilities/curl/curl-7.9.2.tar.gz");
/* Define our callback to get called when there's data to be written */
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, my_fwrite);
/* Set a pointer to our struct to pass to the callback */