mirror of
https://github.com/git/git.git
synced 2026-03-14 10:53:25 +01:00
Although we made sure that in->it_interval is either zero or equal to in->it_value, we were still using in->it_interval to compute the timeout, which could be zero, for example, with git-log's --early-output flag. Use in->it_value instead. On the otherhand, we used in->it_value to check for a single-shot timer. Use in->it_interval instead. Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>