mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-23 17:34:00 +03:00
udev: fix inversed inequality for timeout of retrying event
Follow-up for 5d354e525a
.
This commit is contained in:
parent
695cfd53fe
commit
400e3d21f8
@ -898,7 +898,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…
Reference in New Issue
Block a user