aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib520.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-03-08 08:09:14 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-03-08 08:09:14 +0000
commit702664e9591197c10ec36ab7a0ab7395b77726d7 (patch)
treebb85a68dd1afdce9062a51aa0766d81705098ea3 /tests/libtest/lib520.c
parent18d87edd6d155c8f94233f8e0c32aa1b7434a038 (diff)
Dominick Meglio reported that using CURLOPT_FILETIME when transferring a FTP
file got a Last-Modified: header written to the data stream, corrupting the actual data. This was because some conditions from the previous FTP code was not properly brought into the new FTP code. I fixed and I added test case 520 to verify. (This bug was introduced in 7.13.1)
Diffstat (limited to 'tests/libtest/lib520.c')
-rw-r--r--tests/libtest/lib520.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/libtest/lib520.c b/tests/libtest/lib520.c
new file mode 100644
index 000000000..efc2823a1
--- /dev/null
+++ b/tests/libtest/lib520.c
@@ -0,0 +1,13 @@
+#include "test.h"
+
+int test(char *URL)
+{
+ CURLcode res;
+ CURL *curl = curl_easy_init();
+ curl_easy_setopt(curl, CURLOPT_URL, URL);
+ curl_easy_setopt(curl, CURLOPT_FILETIME, 1);
+ curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
+ res = curl_easy_perform(curl);
+ curl_easy_cleanup(curl);
+ return (int)res;
+}