1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Limit the timeout to one second only under Windows.

This commit is contained in:
Witold Filipczyk 2006-12-31 16:49:52 +01:00 committed by Kalle Olavi Niemitalo
parent 5c51b0a2ae
commit f2a3983389

View File

@ -206,8 +206,10 @@ timeval_limit_to_zero_or_one(timeval_T *t)
{
if (t->sec < 0) t->sec = 0;
if (t->usec < 0) t->usec = 0;
#ifdef CONFIG_OS_WIN32
/* Under Windows I got 300 seconds timeout, so 1 second should not hurt --witekfl */
if (t->sec > 1) t->sec = 1;
#endif
}
/* Returns 1 if t1 > t2