aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2010-10-01 19:52:53 +0200
committerDaniel Stenberg <daniel@haxx.se>2010-10-01 19:52:53 +0200
commit3aef3ed8f6b894ec25cff7d4fe96084413dd049c (patch)
tree289420b775496afe610eca1061e3adfea261be7f
parent488f9545a24d6705ae55e7f69b1388ae6154f910 (diff)
curl_easy_setopt.3: CURLOPT_DIRLISTONLY implies dir list
Make it explicit that setting CURLOPT_DIRLISTONLY to 1 will make libcurl to list the directory.
-rw-r--r--docs/libcurl/curl_easy_setopt.33
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3
index 6452c2a2c..9da53792b 100644
--- a/docs/libcurl/curl_easy_setopt.3
+++ b/docs/libcurl/curl_easy_setopt.3
@@ -1263,6 +1263,9 @@ This causes an FTP NLST command to be sent on an FTP server. Beware that some
FTP servers list only files in their response to NLST; they might not include
subdirectories and symbolic links.
+Setting this option to 1 also implies a directory listing even if the URL
+doesn't end with a slash, which otherwise is necessary.
+
Do NOT use this option if you also use \fICURLOPT_WILDCARDMATCH\fP as it will
effectively break that feature then.