Fixed processing of timers.

This commit is contained in:
Martin Mares 1998-06-04 20:27:49 +00:00
parent fd50083df4
commit 5331da6a4d

View file

@ -709,7 +709,10 @@ io_loop(void)
continue;
}
else
timo.tv_sec = tout - now;
{
timo.tv_sec = tout - now;
timo.tv_usec = 0;
}
hi = 0;
WALK_LIST(n, sock_list)