Fix dumb mistake in patch before last; epoll timeout is in ms, not s.

This commit is contained in:
Nicholas J. Kain 2015-05-27 12:29:46 -04:00
parent 2057d7cd18
commit f061a78a18

View File

@ -412,7 +412,7 @@ static void do_ndhc_work(void)
// Failsafe to prevent busy-spin. // Failsafe to prevent busy-spin.
if (prev_timeout == 0 && !had_event) if (prev_timeout == 0 && !had_event)
timeout = 10; timeout = 10000;
} }
} }