From f061a78a188b09e494f6d306989c68ae94849fe2 Mon Sep 17 00:00:00 2001 From: "Nicholas J. Kain" Date: Wed, 27 May 2015 12:29:46 -0400 Subject: [PATCH] Fix dumb mistake in patch before last; epoll timeout is in ms, not s. --- src/ndhc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ndhc.c b/src/ndhc.c index 6bf032d..ae93445 100644 --- a/src/ndhc.c +++ b/src/ndhc.c @@ -412,7 +412,7 @@ static void do_ndhc_work(void) // Failsafe to prevent busy-spin. if (prev_timeout == 0 && !had_event) - timeout = 10; + timeout = 10000; } }