bug-wget
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Bug-wget] -w on Windows doesn't wait less than 1001 seconds


From: Tim Ruehsen
Subject: Re: [Bug-wget] -w on Windows doesn't wait less than 1001 seconds
Date: Mon, 25 Apr 2016 15:53:35 +0200
User-agent: KMail/4.14.10 (Linux/4.5.0-1-amd64; KDE/4.14.14; x86_64; ; )

Thanks, applied & pushed.

Tim

On Monday 25 April 2016 13:04:09 Jernej Simončič wrote:
> There's a bug in xsleep in mswindows.c:
> 
> --- src/mswindows.c.orig        2015-11-09 16:24:07.000000000 +0100
> +++ src/mswindows.c     2016-04-25 12:29:49.291555801 +0200
> @@ -63,7 +63,7 @@
>  xsleep (double seconds)
>  {
>  #if defined(HAVE_USLEEP) && defined(HAVE_SLEEP)
> -  if (seconds > 1000)
> +  if (seconds >= 1)
>      {
>        /* Explained in utils.c. */
>        sleep (seconds);

Attachment: signature.asc
Description: This is a digitally signed message part.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]