diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-03-08 08:09:14 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-08 08:09:14 +0000 |
commit | 702664e9591197c10ec36ab7a0ab7395b77726d7 (patch) | |
tree | bb85a68dd1afdce9062a51aa0766d81705098ea3 /tests/libtest | |
parent | 18d87edd6d155c8f94233f8e0c32aa1b7434a038 (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')
-rw-r--r-- | tests/libtest/Makefile.am | 8 | ||||
-rw-r--r-- | tests/libtest/lib520.c | 13 |
2 files changed, 19 insertions, 2 deletions
diff --git a/tests/libtest/Makefile.am b/tests/libtest/Makefile.am index e5bc1eab4..acdeb5501 100644 --- a/tests/libtest/Makefile.am +++ b/tests/libtest/Makefile.am @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2004, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -40,7 +40,7 @@ SUPPORTFILES = first.c test.h # These are all libcurl test programs noinst_PROGRAMS = lib500 lib501 lib502 lib503 lib504 lib505 lib506 lib507 \ lib508 lib509 lib510 lib511 lib512 lib513 lib514 lib515 lib516 lib517 \ - lib518 lib519 + lib518 lib519 lib520 lib500_SOURCES = lib500.c $(SUPPORTFILES) lib500_LDADD = $(LIBDIR)/libcurl.la @@ -121,3 +121,7 @@ lib518_DEPENDENCIES = $(LIBDIR)/libcurl.la lib519_SOURCES = lib519.c $(SUPPORTFILES) lib519_LDADD = $(LIBDIR)/libcurl.la lib519_DEPENDENCIES = $(LIBDIR)/libcurl.la + +lib520_SOURCES = lib520.c $(SUPPORTFILES) +lib520_LDADD = $(LIBDIR)/libcurl.la +lib520_DEPENDENCIES = $(LIBDIR)/libcurl.la 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; +} |