]> sjero.net Git - wget/blobdiff - src/ChangeLog
gnutls: Fix a problem with multiple peek read calls.
[wget] / src / ChangeLog
index d337b4a707ab2ef34d93851e554f17a111054fd2..30f75cd6d0c028fbc76adbf36ae79c4e791d272a 100644 (file)
@@ -1,8 +1,54 @@
+2010-07-29  Giuseppe Scrivano  <gscrivano@gnu.org>
+
+       * gnutls.c (wgnutls_peek): Don't read more data if the buffered peek
+       data is sufficient.
+
+2010-07-28  Giuseppe Scrivano  <gscrivano@gnu.org>
+
+       * http.h (http_loop): Add new argument `original_url'
+       * http.c (http_loop): Add new argument `original_url'.  Use
+       `original_url' to get a filename if `trustservernames' is false.
+
+       * init.c (commands): Add "trustservernames".
+
+       * options.h (library): Add variable `trustservernames'.
+
+       * main.c (option_data): Add trust-server-names.
+       (print_help): Describe --trust-server-names.
+
+       * retr.c (retrieve_url): Pass new argument to `http_loop'.
+
+2010-07-20  Alan Jenkins <alan-jenkins@tuffmail.co.uk> (tiny change)
+
+       * http.c (gethttp): Check content-length was set before trying to
+       compare it with the already downloded filesize.
+
+2010-07-20  Leonid Petrov <nouser@lpetrov.net>
+
+       * ftp.c (getftp): Don't attempt to retrieve the file if it is already
+       completely.
+       (ftp_loop_internal): Force the length to be zero for symlinks.
+
+2010-07-18  Giuseppe Scrivano  <gscrivano@gnu.org>
+
+       * http.c (gethttp): If -N is used, don't exit immediately if the content
+       length is less or equal than the existing file size.  Specify "Range"
+       only if -N is not used.
+       Reported by: Caleb Cushing <xenoterracide@gmail.com>.
+
+2010-07-14  Giuseppe Scrivano  <gscrivano@gnu.org>
+
+       * ftp.c (max): Remove definition.
+       (getftp): New variable `got_expected_bytes'.  Let `expected_bytes' be
+       the value SIZE returns, otherwise use the bytes count returned by RETR.
+       Suggested by Daniel Stenberg <daniel@haxx.se>.
+
 2010-07-14  Giuseppe Scrivano  <gscrivano@gnu.org>
 
        * ftp.c (max): Add definition.
-       (getftp): Consider for`expected_bytes' the greatest value between the bytes
-       count returned by SIZE and the bytes count returned by RETR.
+       (getftp): Consider for `expected_bytes' the greatest value between the
+       bytes count returned by SIZE and the bytes count returned by RETR.
+       Reported by: Jozua <jozua@sparky.za.net>.
 
 2010-07-11  Giuseppe Scrivano  <gscrivano@gnu.org>