" " <[EMAIL PROTECTED]> writes:

> WGET 1.8 crashes when trying to retrieve a large file (250MB)
> It seems to happen when new progress indicator is activated (bar style).
> When switching to dot-style indicator it works (for now).
> With smaller files there is no problem also.
> See attachment (screenshot).
> 
> I use WGET 1.8b compiled for Windows 
> downloaded from http://space.tin.it/computer/hherold/

Thanks for the report; this is (by now) a known bug in the 1.8
release.  If you can compile from source, apply the patch provided
below and recompile.

Herold, could you please recompile the 1.8 binaries with this patch
included?  Thanks!

Index: src/progress.c
===================================================================
RCS file: /pack/anoncvs/wget/src/progress.c,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- src/progress.c      2001/12/09 01:24:40     1.21
+++ src/progress.c      2001/12/09 04:51:40     1.22
@@ -647,7 +647,7 @@
        /* Hours not printed: pad with three spaces (two digits and
           colon). */
        APPEND_LITERAL ("   ");
-      else if (eta_hrs >= 10)
+      else if (eta_hrs < 10)
        /* Hours printed with one digit: pad with one space. */
        *p++ = ' ';
       else

Reply via email to