mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-22 22:03:43 +03:00
udev: fix inversed inequality for timeout of retrying event
Follow-up for 5d354e525a56955ae7f68062e283dda85ab07794. (cherry picked from commit 400e3d21f8cae53a8ba9f9567f244fbf6f3e076c)
This commit is contained in:
parent
cf67d5ed1b
commit
2bb9a0a29b
@ -872,7 +872,7 @@ static int event_is_blocked(Event *event) {
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
if (event->retry_again_next_usec <= now_usec)
|
||||
if (event->retry_again_next_usec > now_usec)
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user