mirror of
https://github.com/systemd/systemd.git
synced 2025-06-13 03:17:20 +03:00
udev: fix inversed inequality for timeout of retrying event
Follow-up for 5d354e525a56955ae7f68062e283dda85ab07794.
This commit is contained in:
parent
695cfd53fe
commit
400e3d21f8
@ -898,7 +898,7 @@ static int event_is_blocked(Event *event) {
|
|||||||
if (r < 0)
|
if (r < 0)
|
||||||
return r;
|
return r;
|
||||||
|
|
||||||
if (event->retry_again_next_usec <= now_usec)
|
if (event->retry_again_next_usec > now_usec)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user