mirror of
https://github.com/systemd/systemd.git
synced 2025-03-08 08:58:27 +03:00
network: use SYNTHETIC_ERRNO() macro
This commit is contained in:
parent
d85ff94477
commit
5a9494bedb
@ -400,10 +400,8 @@ int netdev_set_ifindex(NetDev *netdev, sd_netlink_message *message) {
|
||||
if (r < 0)
|
||||
return log_netdev_error_errno(netdev, r, "Could not get rtnl message type: %m");
|
||||
|
||||
if (type != RTM_NEWLINK) {
|
||||
log_netdev_error(netdev, "Cannot set ifindex from unexpected rtnl message type.");
|
||||
return -EINVAL;
|
||||
}
|
||||
if (type != RTM_NEWLINK)
|
||||
return log_netdev_error_errno(netdev, SYNTHETIC_ERRNO(EINVAL), "Cannot set ifindex from unexpected rtnl message type.");
|
||||
|
||||
r = sd_rtnl_message_link_get_ifindex(message, &ifindex);
|
||||
if (r < 0) {
|
||||
|
@ -195,10 +195,8 @@ static int link_set_can(Link *link) {
|
||||
|
||||
format_timespan(time_string, FORMAT_TIMESPAN_MAX, restart_ms * 1000, MSEC_PER_SEC);
|
||||
|
||||
if (restart_ms > UINT32_MAX) {
|
||||
log_link_error(link, "restart timeout (%s) too big.", time_string);
|
||||
return -ERANGE;
|
||||
}
|
||||
if (restart_ms > UINT32_MAX)
|
||||
return log_link_error_errno(link, SYNTHETIC_ERRNO(ERANGE), "restart timeout (%s) too big.", time_string);
|
||||
|
||||
log_link_debug(link, "Setting restart = %s", time_string);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user