]> sjero.net Git - wget/commitdiff
[svn] Avoid useless file_exists_p. Published in
authorhniksic <devnull@localhost>
Mon, 7 May 2001 19:08:29 +0000 (12:08 -0700)
committerhniksic <devnull@localhost>
Mon, 7 May 2001 19:08:29 +0000 (12:08 -0700)
<sxsr8y17zav.fsf@florida.arsdigita.de>.

src/ChangeLog
src/http.c

index 12c7e3efb8198a3ed2a63f076c207f60fbcfdab8..343fa75a47ea2aa02996ea8e87d7008da7a22e71 100644 (file)
@@ -1,3 +1,8 @@
+2001-05-07  Hrvoje Niksic  <hniksic@arsdigita.com>
+
+       * http.c (http_loop): If restval is set, set no_truncate to 1
+       unconditionally.
+
 2001-05-02  Jan Prikryl  <prikryl@cg.tuwien.ac.at>
 
        * ftp-ls.c (ftp_parse_winnt_ls): Assure months are being correctly
index f595d29210dd25530ba7d9a0e81024c8699388e2..b61f7de04aaed2db2924c936a55e8b230c494187 100644 (file)
@@ -1514,6 +1514,7 @@ File `%s' already there, will not retrieve.\n"), u->local);
       hstat.restval = 0L;
       /* Decide whether or not to restart.  */
       if (((count > 1 && (*dt & ACCEPTRANGES)) || opt.always_rest)
+         /* #### this calls access() and then stat(); could be optimized. */
          && file_exists_p (locf))
        if (stat (locf, &st) == 0 && S_ISREG (st.st_mode))
          hstat.restval = st.st_size;
@@ -1522,7 +1523,7 @@ File `%s' already there, will not retrieve.\n"), u->local);
         refuse to truncate it if the server doesn't support continued
         downloads.  */
       if (opt.always_rest && hstat.restval)
-       hstat.no_truncate = file_exists_p (locf);
+       hstat.no_truncate = 1;
 
       /* Decide whether to send the no-cache directive.  We send it in
         two cases: