Commit 28f2cfc3 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix typo.

parent 742ade18
......@@ -131,7 +131,7 @@ void
delay_jitter(struct timeval *time, struct timeval *timeout, int msecs)
{
int delay;
delay = msecs * 3 / 2 + random() % MAX(msecs / 3, 10);
delay = msecs * 2 / 3 + random() % MAX(msecs / 3, 10);
*time = now;
timeval_plus_msec(timeout, &now, delay);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment