diff options
Diffstat (limited to 'docs/examples/ftp-wildcard.c')
-rw-r--r-- | docs/examples/ftp-wildcard.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/examples/ftp-wildcard.c b/docs/examples/ftp-wildcard.c index 732515c7a..0186a38af 100644 --- a/docs/examples/ftp-wildcard.c +++ b/docs/examples/ftp-wildcard.c @@ -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); |