Weird problem with wget1.7

2001-06-25 Thread Bazuka
Hi, I have been using wget1.6 version for some time now. I recently installed the 1.7 version and was checking it on a site when I noticed that the index.html file was being downloaded again and again. The first few seconds in teh log file showed that the index.html file had been downloaded more

Missing escape character

2001-06-25 Thread Bill Bumgarner
In html-parse, the following case near line 449 is missing the \ in '\' -- it comes out as '' and, as such, causes some compilers to barf. case AC_S_QUOTE1: assert (ch == '\'' || ch == '\');

Re: Missing escape character

2001-06-25 Thread Hrvoje Niksic
Bill Bumgarner [EMAIL PROTECTED] writes: In html-parse, the following case near line 449 is missing the \ in '\' -- it comes out as '' and, as such, causes some compilers to barf. Could you name an actual compiler that barfs on it? The constant '' is perfectly legal in C, and I'm positive

Re: Missing escape character

2001-06-25 Thread Bill Bumgarner
Certainly: [localhost:/tmp] bbum% cc -v Reading specs from /usr/libexec/gcc/darwin/ppc/2.95.2/specs Apple Computer, Inc. version gcc-926, based on gcc version 2.95.2 19991024 (release) On Monday, June 25, 2001, at 05:54 PM, Hrvoje Niksic wrote: Bill Bumgarner [EMAIL PROTECTED] writes: In