"Christian Fraenkel" <[EMAIL PROTECTED]> writes:
> Hi,
> while backing up my homedir via ftp
> I caught a small bug in wget.
> The patch below should fix it.
>
> you can reproduce this bug by running:
> wget ftp://myuser:myhost@localhost
>
>
> Index: src/url.c
> ===================================================================
> RCS file: /pack/anoncvs/wget/src/url.c,v
> retrieving revision 1.37
> diff -r1.37 url.c
> 625c625
> < for (p = q = col = url; *p != '/'; p++)
> ---
> > for (p = q = col = url; *p && *p != '/'; p++)
Now fixed in CVS; thanks for the report.