1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-08-25 21:44:47 -04: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 Witold Filipczyk
parent 7a424fca7a
commit 38b09e44c7

View File

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