examples: use example.com in example URLs

This commit is contained in:
Daniel Stenberg 2010-10-05 15:00:19 +02:00
parent 6d272e53a2
commit 18e7b52e8e
27 changed files with 41 additions and 43 deletions

View file

@ -67,8 +67,7 @@ int main(int argc, char **argv)
if(argc == 2)
curl_easy_setopt(handle, CURLOPT_URL, argv[1]);
else
curl_easy_setopt(handle, CURLOPT_URL,
"ftp://curltest.howto.cz:123456@curltest.howto.cz/test/*");
curl_easy_setopt(handle, CURLOPT_URL, "ftp://example.com/test/*");
/* and start transfer! */
rc = curl_easy_perform(handle);