summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-05-31 13:36:51 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-05-31 13:36:51 +0200
commitf072393febfc8dfefa88a8c0f9d04c4312810779 (patch)
treed22f106e00417bfa1af398f4798abdac780102b1
parent28baf380fa339ffdec9cba0d4bb22c3758c27428 (diff)
downloadcurl-f072393febfc8dfefa88a8c0f9d04c4312810779.tar.gz
CURLOPT_FNMATCH_FUNCTION.3: also modified example to avoid fcpp issues
-rw-r--r--docs/libcurl/opts/CURLOPT_FNMATCH_FUNCTION.32
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libcurl/opts/CURLOPT_FNMATCH_FUNCTION.3 b/docs/libcurl/opts/CURLOPT_FNMATCH_FUNCTION.3
index 4ebdedfb0..7a79ad8a7 100644
--- a/docs/libcurl/opts/CURLOPT_FNMATCH_FUNCTION.3
+++ b/docs/libcurl/opts/CURLOPT_FNMATCH_FUNCTION.3
@@ -60,7 +60,7 @@ static int my_fnmatch(void *clientp,
{
struct local_stuff local_data;
- curl_easy_setopt(curl, CURLOPT_URL, "ftp://ftp.example.com/*txt");
+ curl_easy_setopt(curl, CURLOPT_URL, "ftp://ftp.example.com/file*");
curl_easy_setopt(curl, CURLOPT_WILDCARDMATCH, 1L);
curl_easy_setopt(curl, CURLOPT_FNMATCH_FUNCTION, my_fnmatch);
curl_easy_setopt(curl, CURLOPT_FNMATCH_DATA, &local_data);