mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-21 18:03:41 +03:00
sd-device-monitor: fix inversed condition
Fixes an issue introduced by b3d06b9226db96fddb6bb45a4708e2e8d413d91d. (cherry picked from commit 133d78966fe8b1469e593bd467d9055f7afa5858) (cherry picked from commit 81339c45e8d3372096599525397a632714da2dd5)
This commit is contained in:
parent
45e46fb4b2
commit
02a5c22ec1
@ -445,7 +445,7 @@ int device_monitor_receive_device(sd_device_monitor *m, sd_device **ret) {
|
||||
|
||||
buflen = recvmsg(m->sock, &smsg, 0);
|
||||
if (buflen < 0) {
|
||||
if (ERRNO_IS_TRANSIENT(errno))
|
||||
if (!ERRNO_IS_TRANSIENT(errno))
|
||||
log_debug_errno(errno, "sd-device-monitor: Failed to receive message: %m");
|
||||
return -errno;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user