+2010-06-15 René Berber <r.berber@computer.org> (tiny change)
+
+ select: Correct timeout.
+ * lib/select.c (rpl_select): Compute wait_timeout correctly.
+
2010-06-14 Thien-Thi Nguyen <ttn@gnuvola.org> (tiny change)
git-version-gen: init shell var to avoid env var influence
wait_timeout = INFINITE;
else
{
- wait_timeout = timeout->tv_sec + timeout->tv_usec / 1000;
+ wait_timeout = timeout->tv_sec * 1000 + timeout->tv_usec / 1000;
/* select is also used as a portable usleep. */
if (!rfds && !wfds && !xfds)