Works.
New windows test binary at the usual place.
Heiko

-- 
-- PREVINET S.p.A. www.previnet.it
-- Heiko Herold [EMAIL PROTECTED]
-- +39-041-5907073 ph
-- +39-041-5907472 fax

> -----Original Message-----
> From: Hrvoje Niksic [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 18, 2003 1:43 PM
> To: Herold Heiko
> Cc: List Wget (E-mail); [EMAIL PROTECTED]
> Subject: Re: windows compile error
> 
> 
> I've noticed the mistake as soon as I compiled with SSL (and saw the
> warnings):
> 
> 2003-09-18  Hrvoje Niksic  <[EMAIL PROTECTED]>
> 
>       * retr.c (get_contents): Pass the correct argument to ssl_iread.
> 
> Index: src/retr.c
> ===================================================================
> RCS file: /pack/anoncvs/wget/src/retr.c,v
> retrieving revision 1.57
> diff -u -r1.57 retr.c
> --- src/retr.c        2003/09/15 21:48:43     1.57
> +++ src/retr.c        2003/09/18 11:41:56
> @@ -191,7 +191,7 @@
>                           ? MIN (expected - *len, dlbufsize) 
> : dlbufsize);
>  #ifdef HAVE_SSL
>        if (rbuf->ssl!=NULL)
> -     res = ssl_iread (rbuf->ssl, dlbufsize, amount_to_read);
> +     res = ssl_iread (rbuf->ssl, dlbuf, amount_to_read);
>        else
>  #endif /* HAVE_SSL */
>       res = iread (fd, dlbuf, amount_to_read);
> 
> 

Reply via email to