mirror of
https://github.com/NetworkConfiguration/dhcpcd.git
synced 2026-01-26 14:13:26 +00:00
dhcpcd: ignore ENXIO on handlelink
This commit is contained in:
parent
958279d631
commit
44e4ac6e36
@ -1145,7 +1145,7 @@ dhcpcd_handlelink(void *arg, unsigned short events)
|
||||
dhcpcd_linkoverflow(ctx);
|
||||
return;
|
||||
}
|
||||
if (errno != ENOTSUP)
|
||||
if (errno != ENOTSUP && errno != ENXIO)
|
||||
logerr(__func__);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user