diff options
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/poll-engine.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/daemon/poll-engine.c b/daemon/poll-engine.c index 58c9dce..0d0f934 100644 --- a/daemon/poll-engine.c +++ b/daemon/poll-engine.c @@ -439,6 +439,9 @@ prep_timer (mstime when, void* arg) if (server_timer (poll->interval, poller_timer, poll) == -1) log_error ("couldn't setup poller timer"); + /* Run the poll the first time */ + poller_timer (when, poll); + /* Setup the next poller anywhere between 0 and 750 ms */ next = rand () % 750; server_oneshot (next, prep_timer, poll->next); |