I put up the current cvs, mainly since there have been those patches to ftp-ls.c and the signal handler. Ok ?
Usually I try to not put up patched binaries or sources... I have the nagging feeling (from some mail I get from time to time) there's quite a userbase which does take the zipped cvs sources I put up in order to use them on unix platforms. Don't ask me why. Well, possibly folks behind firewalls who can't use cvs but can download with a proxy or something.. Heiko -- -- PREVINET S.p.A. [EMAIL PROTECTED] -- Via Ferretto, 1 ph x39-041-5907073 -- I-31021 Mogliano V.to (TV) fax x39-041-5907087 -- ITALY > -----Original Message----- > From: Hrvoje Niksic [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, December 12, 2001 12:07 PM > To: Wget List; > Subject: Re: WGET 1.8 bug report > > > " " <[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 >
